rroonga 5.0.4-x64-mingw32 → 5.0.5-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (750) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +2 -2
  3. data/example/measure-data-column-disk-usage.rb +124 -0
  4. data/example/measure-index-column-disk-usage.rb +81 -0
  5. data/example/measure-table-disk-usage.rb +100 -0
  6. data/ext/groonga/rb-grn-database.c +31 -0
  7. data/ext/groonga/rb-grn-double-array-trie.c +1 -8
  8. data/ext/groonga/rb-grn-logger.c +45 -0
  9. data/ext/groonga/rb-grn-object.c +29 -1
  10. data/ext/groonga/rb-grn-patricia-trie.c +1 -8
  11. data/ext/groonga/rb-grn-table-cursor.c +8 -3
  12. data/ext/groonga/rb-grn-table.c +10 -5
  13. data/ext/groonga/rb-grn-thread.c +160 -0
  14. data/ext/groonga/rb-grn-windows-event-logger.c +79 -0
  15. data/ext/groonga/rb-grn.h +3 -1
  16. data/ext/groonga/rb-groonga.c +3 -1
  17. data/lib/1.9/groonga.so +0 -0
  18. data/lib/2.0/groonga.so +0 -0
  19. data/lib/2.1/groonga.so +0 -0
  20. data/lib/2.2/groonga.so +0 -0
  21. data/lib/groonga/dumper.rb +6 -1
  22. data/rroonga-build.rb +4 -4
  23. data/test/groonga-test-utils.rb +5 -1
  24. data/test/test-database.rb +11 -0
  25. data/test/test-logger.rb +6 -0
  26. data/test/test-operator.rb +6 -6
  27. data/test/test-procedure.rb +15 -0
  28. data/test/test-table-dumper.rb +170 -1
  29. data/test/test-thread.rb +42 -0
  30. data/test/test-windows-event-logger.rb +28 -0
  31. data/vendor/local/bin/grndb.exe +0 -0
  32. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  33. data/vendor/local/bin/groonga.exe +0 -0
  34. data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
  35. data/vendor/local/bin/libgroonga-0.dll +0 -0
  36. data/vendor/local/bin/libmecab-1.dll +0 -0
  37. data/vendor/local/bin/libmsgpack-4.dll +0 -0
  38. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  39. data/vendor/local/bin/libonig-5.dll +0 -0
  40. data/vendor/local/bin/libstdc++-6.dll +0 -0
  41. data/vendor/local/bin/libwinpthread-1.dll +0 -0
  42. data/vendor/local/bin/lz4.exe +0 -0
  43. data/vendor/local/bin/lz4c.exe +0 -0
  44. data/vendor/local/bin/lz4cat +0 -0
  45. data/vendor/local/bin/mecab-config +2 -2
  46. data/vendor/local/bin/mecab.exe +0 -0
  47. data/vendor/local/bin/onig-config +1 -1
  48. data/vendor/local/bin/zlib1.dll +0 -0
  49. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
  50. data/vendor/local/etc/groonga/windows_event_log/provider.man +38 -0
  51. data/vendor/local/include/groonga/groonga.h +2 -0
  52. data/vendor/local/include/groonga/groonga/command.h +2 -0
  53. data/vendor/local/include/groonga/groonga/groonga.h +5 -0
  54. data/vendor/local/include/groonga/groonga/obj.h +1 -0
  55. data/vendor/local/include/groonga/groonga/portability.h +16 -0
  56. data/vendor/local/include/groonga/groonga/thread.h +42 -0
  57. data/vendor/local/include/groonga/groonga/windows_event_logger.h +33 -0
  58. data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
  59. data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
  60. data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
  61. data/vendor/local/lib/groonga/plugins/functions/vector.la +2 -2
  62. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  63. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  64. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  65. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
  66. data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
  67. data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
  68. data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
  69. data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
  70. data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
  71. data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
  72. data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
  73. data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
  74. data/vendor/local/lib/groonga/plugins/sharding.rb +5 -0
  75. data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +43 -6
  76. data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +32 -25
  77. data/vendor/local/lib/groonga/plugins/sharding/logical_parameters.rb +44 -0
  78. data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +217 -49
  79. data/vendor/local/lib/groonga/plugins/sharding/logical_select.rb +507 -45
  80. data/vendor/local/lib/groonga/plugins/sharding/logical_shard_list.rb +28 -0
  81. data/vendor/local/lib/groonga/plugins/sharding/logical_table_remove.rb +11 -6
  82. data/vendor/local/lib/groonga/plugins/sharding/parameters.rb +10 -0
  83. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  84. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  85. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  86. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
  87. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  88. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  89. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  90. data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
  91. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
  92. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
  93. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
  94. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +2 -2
  95. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  96. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  97. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  98. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
  99. data/vendor/local/lib/groonga/scripts/ruby/command.rb +31 -1
  100. data/vendor/local/lib/groonga/scripts/ruby/context.rb +18 -2
  101. data/vendor/local/lib/groonga/scripts/ruby/database.rb +12 -4
  102. data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +31 -28
  103. data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +1 -0
  104. data/vendor/local/lib/groonga/scripts/ruby/logger/level.rb +4 -2
  105. data/vendor/local/lib/groonga/scripts/ruby/query_logger.rb +9 -0
  106. data/vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb +39 -0
  107. data/vendor/local/lib/groonga/scripts/ruby/record.rb +12 -0
  108. data/vendor/local/lib/groonga/scripts/ruby/table.rb +35 -1
  109. data/vendor/local/lib/libgroonga.a +0 -0
  110. data/vendor/local/lib/libgroonga.dll.a +0 -0
  111. data/vendor/local/lib/libgroonga.la +2 -2
  112. data/vendor/local/lib/liblz4.dll +0 -0
  113. data/vendor/local/lib/liblz4.dll.1 +0 -0
  114. data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
  115. data/vendor/local/lib/libmecab.a +0 -0
  116. data/vendor/local/lib/libmecab.dll.a +0 -0
  117. data/vendor/local/lib/libmecab.la +2 -2
  118. data/vendor/local/lib/libmsgpack.a +0 -0
  119. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  120. data/vendor/local/lib/libmsgpack.la +2 -2
  121. data/vendor/local/lib/libmsgpackc.a +0 -0
  122. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  123. data/vendor/local/lib/libmsgpackc.la +2 -2
  124. data/vendor/local/lib/libonig.a +0 -0
  125. data/vendor/local/lib/libonig.dll.a +0 -0
  126. data/vendor/local/lib/libonig.la +2 -2
  127. data/vendor/local/lib/libz.dll.a +0 -0
  128. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  129. data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
  130. data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
  131. data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
  132. data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
  133. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  134. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  135. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  136. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  137. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  138. data/vendor/local/sbin/groonga-httpd-restart +1 -1
  139. data/vendor/local/sbin/groonga-httpd.exe +0 -0
  140. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  141. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development.txt +3 -2
  142. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build.txt +19 -0
  143. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build/unix_autotools.txt +101 -0
  144. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build/unix_cmake.txt +94 -0
  145. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build/windows_cmake.txt +93 -0
  146. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +16 -7
  147. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/repository.txt +7 -3
  148. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/test.txt +4 -0
  149. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
  150. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +4 -4
  151. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
  152. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  153. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +4 -4
  154. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  155. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -4
  156. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
  157. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +319 -0
  158. data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +1 -0
  159. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +1 -1
  160. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_db.txt +23 -0
  161. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_thread.txt +122 -0
  162. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt +1 -1
  163. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_copy.txt +381 -0
  164. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_list.txt +1 -1
  165. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_rename.txt +3 -1
  166. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/database_unmap.txt +85 -0
  167. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/io_flush.txt +218 -9
  168. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_clear.txt +1 -3
  169. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_level.txt +1 -1
  170. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_count.txt +3 -1
  171. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_parameters.txt +138 -0
  172. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_range_filter.txt +97 -10
  173. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_select.txt +745 -23
  174. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_shard_list.txt +107 -0
  175. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_table_remove.txt +3 -1
  176. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt +2 -3
  177. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt +1 -2
  178. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_exist.txt +90 -0
  179. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_register.txt +1 -1
  180. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_unregister.txt +1 -1
  181. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +1 -1
  182. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +1 -3
  183. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_eval.txt +1 -1
  184. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_load.txt +1 -1
  185. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +240 -56
  186. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +33 -7
  187. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_rename.txt +90 -0
  188. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt +2 -1
  189. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/thread_limit.txt +110 -0
  190. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +2 -1
  191. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt +1 -3
  192. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt +1 -3
  193. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt +3 -4
  194. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +0 -1
  195. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +0 -1
  196. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +2 -2
  197. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt +1 -1
  198. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +1 -1
  199. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +34 -14
  200. data/vendor/local/share/doc/groonga/en/html/_sources/reference/indexing.txt +2 -2
  201. data/vendor/local/share/doc/groonga/en/html/_sources/reference/query_expanders/tsv.txt +1 -1
  202. data/vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt +3 -0
  203. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scoring_note.txt +2 -0
  204. data/vendor/local/share/doc/groonga/en/html/_sources/reference/sharding.txt +108 -0
  205. data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +0 -21
  206. data/vendor/local/share/doc/groonga/en/html/_sources/reference/tuning.txt +1 -1
  207. data/vendor/local/share/doc/groonga/en/html/_sources/spec/search.txt +1 -1
  208. data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +4 -4
  209. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/introduction.txt +24 -18
  210. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt +19 -19
  211. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt +9 -9
  212. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt +1 -1
  213. data/vendor/local/share/doc/groonga/en/html/_static/basic.css +68 -6
  214. data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +27 -2
  215. data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
  216. data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
  217. data/vendor/local/share/doc/groonga/en/html/_static/file.png +0 -0
  218. data/vendor/local/share/doc/groonga/en/html/_static/jquery-1.11.1.js +10308 -0
  219. data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +4 -9404
  220. data/vendor/local/share/doc/groonga/en/html/_static/minus.png +0 -0
  221. data/vendor/local/share/doc/groonga/en/html/_static/plus.png +0 -0
  222. data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
  223. data/vendor/local/share/doc/groonga/en/html/_static/underscore-1.3.1.js +999 -0
  224. data/vendor/local/share/doc/groonga/en/html/_static/underscore.js +31 -1415
  225. data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
  226. data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
  227. data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +15 -15
  228. data/vendor/local/share/doc/groonga/en/html/characteristic.html +19 -17
  229. data/vendor/local/share/doc/groonga/en/html/client.html +19 -17
  230. data/vendor/local/share/doc/groonga/en/html/community.html +19 -17
  231. data/vendor/local/share/doc/groonga/en/html/contribution.html +78 -70
  232. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +30 -27
  233. data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +146 -0
  234. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +237 -0
  235. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +227 -0
  236. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +231 -0
  237. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +37 -35
  238. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +54 -52
  239. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +80 -78
  240. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +135 -122
  241. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +38 -34
  242. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +58 -54
  243. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +21 -19
  244. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +27 -25
  245. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +23 -21
  246. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +30 -28
  247. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +21 -19
  248. data/vendor/local/share/doc/groonga/en/html/development.html +19 -17
  249. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +30 -28
  250. data/vendor/local/share/doc/groonga/en/html/genindex.html +48 -20
  251. data/vendor/local/share/doc/groonga/en/html/index.html +123 -105
  252. data/vendor/local/share/doc/groonga/en/html/install.html +33 -31
  253. data/vendor/local/share/doc/groonga/en/html/install/centos.html +32 -30
  254. data/vendor/local/share/doc/groonga/en/html/install/debian.html +31 -29
  255. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +29 -27
  256. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +26 -24
  257. data/vendor/local/share/doc/groonga/en/html/install/others.html +92 -90
  258. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +26 -24
  259. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +29 -28
  260. data/vendor/local/share/doc/groonga/en/html/install/windows.html +34 -32
  261. data/vendor/local/share/doc/groonga/en/html/limitations.html +19 -17
  262. data/vendor/local/share/doc/groonga/en/html/news.html +509 -142
  263. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +19 -17
  264. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +20 -18
  265. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +19 -17
  266. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +34 -32
  267. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +29 -27
  268. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +110 -108
  269. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +73 -71
  270. data/vendor/local/share/doc/groonga/en/html/news/4.x.html +111 -109
  271. data/vendor/local/share/doc/groonga/en/html/news/senna.html +19 -17
  272. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  273. data/vendor/local/share/doc/groonga/en/html/reference.html +111 -94
  274. data/vendor/local/share/doc/groonga/en/html/reference/api.html +55 -52
  275. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +51 -49
  276. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +63 -61
  277. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +84 -82
  278. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +46 -44
  279. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +41 -39
  280. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +89 -87
  281. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +88 -50
  282. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +48 -46
  283. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +83 -81
  284. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +46 -44
  285. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +48 -46
  286. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +46 -44
  287. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +45 -43
  288. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +45 -43
  289. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +44 -42
  290. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +93 -91
  291. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +48 -46
  292. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +43 -41
  293. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +79 -77
  294. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +69 -67
  295. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +296 -0
  296. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +45 -43
  297. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +38 -36
  298. data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +51 -49
  299. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +60 -58
  300. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +19 -17
  301. data/vendor/local/share/doc/groonga/en/html/reference/column.html +21 -19
  302. data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +23 -21
  303. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +28 -26
  304. data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +23 -21
  305. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +72 -70
  306. data/vendor/local/share/doc/groonga/en/html/reference/command.html +70 -61
  307. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +23 -21
  308. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +59 -57
  309. data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +28 -26
  310. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +100 -98
  311. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +44 -42
  312. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +49 -47
  313. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +33 -31
  314. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +796 -0
  315. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +62 -60
  316. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +96 -94
  317. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +46 -44
  318. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +67 -64
  319. data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +236 -0
  320. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +62 -60
  321. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +46 -44
  322. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +59 -57
  323. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +63 -61
  324. data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +281 -54
  325. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +66 -64
  326. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +53 -52
  327. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +48 -46
  328. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +48 -46
  329. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +48 -46
  330. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +78 -75
  331. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +283 -0
  332. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +160 -85
  333. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +2071 -83
  334. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +287 -0
  335. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +71 -68
  336. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +86 -84
  337. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +52 -50
  338. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +227 -0
  339. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +57 -55
  340. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +53 -51
  341. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +43 -41
  342. data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +43 -41
  343. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +56 -54
  344. data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +75 -74
  345. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +59 -57
  346. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +59 -57
  347. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +898 -647
  348. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +43 -41
  349. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +50 -48
  350. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +87 -85
  351. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +175 -152
  352. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +55 -53
  353. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +46 -44
  354. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +327 -0
  355. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +77 -75
  356. data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +241 -0
  357. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +108 -106
  358. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +56 -51
  359. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +56 -55
  360. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +24 -22
  361. data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +41 -39
  362. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +28 -26
  363. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +33 -31
  364. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +83 -81
  365. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +29 -27
  366. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +23 -21
  367. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +48 -46
  368. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +40 -38
  369. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +84 -82
  370. data/vendor/local/share/doc/groonga/en/html/reference/function.html +22 -20
  371. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +47 -45
  372. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +25 -23
  373. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +85 -83
  374. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +36 -34
  375. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +26 -24
  376. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +66 -64
  377. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +54 -52
  378. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +35 -33
  379. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +34 -32
  380. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +23 -21
  381. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +55 -53
  382. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +24 -22
  383. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +49 -47
  384. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +45 -43
  385. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +33 -31
  386. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +29 -27
  387. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +244 -242
  388. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +327 -325
  389. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +35 -29
  390. data/vendor/local/share/doc/groonga/en/html/reference/log.html +43 -41
  391. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +49 -47
  392. data/vendor/local/share/doc/groonga/en/html/reference/operations.html +21 -19
  393. data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +23 -21
  394. data/vendor/local/share/doc/groonga/en/html/reference/output.html +36 -34
  395. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +21 -19
  396. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +62 -60
  397. data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +107 -103
  398. data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +50 -40
  399. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +27 -25
  400. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +41 -31
  401. data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +19 -17
  402. data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +241 -0
  403. data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +21 -19
  404. data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +30 -28
  405. data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +23 -21
  406. data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +23 -21
  407. data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +23 -21
  408. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +56 -54
  409. data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +41 -39
  410. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +341 -289
  411. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +68 -66
  412. data/vendor/local/share/doc/groonga/en/html/reference/types.html +43 -41
  413. data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
  414. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  415. data/vendor/local/share/doc/groonga/en/html/server.html +19 -17
  416. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +22 -20
  417. data/vendor/local/share/doc/groonga/en/html/server/http.html +21 -19
  418. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +37 -35
  419. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +23 -21
  420. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +23 -21
  421. data/vendor/local/share/doc/groonga/en/html/server/memcached.html +21 -19
  422. data/vendor/local/share/doc/groonga/en/html/server/package.html +39 -37
  423. data/vendor/local/share/doc/groonga/en/html/spec.html +23 -21
  424. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +129 -127
  425. data/vendor/local/share/doc/groonga/en/html/spec/search.html +22 -20
  426. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +19 -17
  427. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +25 -23
  428. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +22 -20
  429. data/vendor/local/share/doc/groonga/en/html/tutorial.html +20 -18
  430. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +29 -23
  431. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +35 -33
  432. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +25 -23
  433. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +46 -39
  434. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +21 -19
  435. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +65 -63
  436. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +55 -53
  437. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +25 -23
  438. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +22 -20
  439. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +25 -23
  440. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +37 -35
  441. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  442. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development.txt +3 -2
  443. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build.txt +19 -0
  444. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build/unix_autotools.txt +101 -0
  445. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build/unix_cmake.txt +94 -0
  446. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build/windows_cmake.txt +93 -0
  447. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +16 -7
  448. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/repository.txt +7 -3
  449. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/test.txt +4 -0
  450. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
  451. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +4 -4
  452. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
  453. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  454. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +4 -4
  455. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  456. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -4
  457. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
  458. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +319 -0
  459. data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +1 -0
  460. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +1 -1
  461. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_db.txt +23 -0
  462. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_thread.txt +122 -0
  463. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt +1 -1
  464. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_copy.txt +381 -0
  465. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_list.txt +1 -1
  466. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_rename.txt +3 -1
  467. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/database_unmap.txt +85 -0
  468. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/io_flush.txt +218 -9
  469. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_clear.txt +1 -3
  470. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt +1 -1
  471. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_count.txt +3 -1
  472. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_parameters.txt +138 -0
  473. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_range_filter.txt +97 -10
  474. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_select.txt +745 -23
  475. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_shard_list.txt +107 -0
  476. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_table_remove.txt +3 -1
  477. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt +2 -3
  478. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt +1 -2
  479. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_exist.txt +90 -0
  480. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_register.txt +1 -1
  481. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_unregister.txt +1 -1
  482. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +1 -1
  483. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +1 -3
  484. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_eval.txt +1 -1
  485. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_load.txt +1 -1
  486. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +240 -56
  487. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +33 -7
  488. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_rename.txt +90 -0
  489. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt +2 -1
  490. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/thread_limit.txt +110 -0
  491. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +2 -1
  492. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt +1 -3
  493. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt +1 -3
  494. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt +3 -4
  495. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +0 -1
  496. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +0 -1
  497. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +2 -2
  498. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt +1 -1
  499. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +1 -1
  500. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +34 -14
  501. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/indexing.txt +2 -2
  502. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/query_expanders/tsv.txt +1 -1
  503. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt +3 -0
  504. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scoring_note.txt +2 -0
  505. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/sharding.txt +108 -0
  506. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +0 -21
  507. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tuning.txt +1 -1
  508. data/vendor/local/share/doc/groonga/ja/html/_sources/spec/search.txt +1 -1
  509. data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +4 -4
  510. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/introduction.txt +24 -18
  511. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt +19 -19
  512. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt +9 -9
  513. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt +1 -1
  514. data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +68 -6
  515. data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +27 -2
  516. data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
  517. data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
  518. data/vendor/local/share/doc/groonga/ja/html/_static/file.png +0 -0
  519. data/vendor/local/share/doc/groonga/ja/html/_static/jquery-1.11.1.js +10308 -0
  520. data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +4 -9404
  521. data/vendor/local/share/doc/groonga/ja/html/_static/minus.png +0 -0
  522. data/vendor/local/share/doc/groonga/ja/html/_static/plus.png +0 -0
  523. data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
  524. data/vendor/local/share/doc/groonga/ja/html/_static/underscore-1.3.1.js +999 -0
  525. data/vendor/local/share/doc/groonga/ja/html/_static/underscore.js +31 -1415
  526. data/vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png +0 -0
  527. data/vendor/local/share/doc/groonga/ja/html/_static/up.png +0 -0
  528. data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +15 -15
  529. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +19 -17
  530. data/vendor/local/share/doc/groonga/ja/html/client.html +19 -17
  531. data/vendor/local/share/doc/groonga/ja/html/community.html +19 -17
  532. data/vendor/local/share/doc/groonga/ja/html/contribution.html +77 -69
  533. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +30 -27
  534. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +144 -0
  535. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +226 -0
  536. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +215 -0
  537. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +229 -0
  538. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +36 -34
  539. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +53 -51
  540. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +79 -77
  541. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +134 -121
  542. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +29 -27
  543. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +57 -53
  544. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +21 -19
  545. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +23 -21
  546. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +23 -21
  547. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +30 -28
  548. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +21 -19
  549. data/vendor/local/share/doc/groonga/ja/html/development.html +19 -17
  550. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +25 -23
  551. data/vendor/local/share/doc/groonga/ja/html/genindex.html +48 -20
  552. data/vendor/local/share/doc/groonga/ja/html/index.html +122 -104
  553. data/vendor/local/share/doc/groonga/ja/html/install.html +33 -31
  554. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +35 -33
  555. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +33 -31
  556. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +30 -28
  557. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +26 -24
  558. data/vendor/local/share/doc/groonga/ja/html/install/others.html +83 -81
  559. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +25 -23
  560. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +30 -29
  561. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +33 -31
  562. data/vendor/local/share/doc/groonga/ja/html/limitations.html +19 -17
  563. data/vendor/local/share/doc/groonga/ja/html/news.html +460 -126
  564. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +19 -17
  565. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +20 -18
  566. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +19 -17
  567. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +34 -32
  568. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +29 -27
  569. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +102 -100
  570. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +66 -64
  571. data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +91 -89
  572. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +19 -17
  573. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  574. data/vendor/local/share/doc/groonga/ja/html/reference.html +111 -94
  575. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +55 -52
  576. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +51 -49
  577. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +58 -56
  578. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +84 -82
  579. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +46 -44
  580. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +41 -39
  581. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +85 -83
  582. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +88 -50
  583. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +48 -46
  584. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +78 -76
  585. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +46 -44
  586. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +48 -46
  587. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +46 -44
  588. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +45 -43
  589. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +45 -43
  590. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +44 -42
  591. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +93 -91
  592. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +48 -46
  593. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +43 -41
  594. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +79 -77
  595. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +69 -67
  596. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +286 -0
  597. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +45 -43
  598. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +38 -36
  599. data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +48 -46
  600. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +60 -58
  601. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +19 -17
  602. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +21 -19
  603. data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +23 -21
  604. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +28 -26
  605. data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +23 -21
  606. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +61 -59
  607. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +70 -61
  608. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +23 -21
  609. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +49 -47
  610. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +28 -26
  611. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +99 -97
  612. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +41 -39
  613. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +49 -47
  614. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +33 -31
  615. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +781 -0
  616. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +62 -60
  617. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +88 -86
  618. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +46 -44
  619. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +66 -63
  620. data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +229 -0
  621. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +62 -60
  622. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +46 -44
  623. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +58 -56
  624. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +63 -61
  625. data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +266 -54
  626. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +59 -57
  627. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +53 -52
  628. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +48 -46
  629. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +48 -46
  630. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +48 -46
  631. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +78 -75
  632. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +276 -0
  633. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +158 -85
  634. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +2008 -80
  635. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +285 -0
  636. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +71 -68
  637. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +82 -79
  638. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +52 -50
  639. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +220 -0
  640. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +53 -51
  641. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +51 -49
  642. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +43 -41
  643. data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +43 -41
  644. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +52 -50
  645. data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +68 -67
  646. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +59 -57
  647. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +59 -57
  648. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +680 -448
  649. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +43 -41
  650. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +48 -46
  651. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +84 -82
  652. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +146 -126
  653. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +55 -53
  654. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +46 -44
  655. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +322 -0
  656. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +73 -70
  657. data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +229 -0
  658. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +94 -91
  659. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +56 -51
  660. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +56 -55
  661. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +24 -22
  662. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +39 -37
  663. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +28 -26
  664. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +33 -31
  665. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +73 -72
  666. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +29 -27
  667. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +23 -21
  668. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +48 -46
  669. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +40 -38
  670. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +84 -82
  671. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +22 -20
  672. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +46 -44
  673. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +25 -23
  674. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +69 -67
  675. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +36 -34
  676. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +26 -24
  677. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +56 -54
  678. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +45 -43
  679. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +34 -32
  680. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +35 -33
  681. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +23 -21
  682. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +48 -46
  683. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +24 -22
  684. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +35 -33
  685. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +37 -35
  686. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +33 -31
  687. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +26 -24
  688. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +143 -141
  689. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +236 -234
  690. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +34 -28
  691. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +43 -41
  692. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +39 -37
  693. data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +21 -19
  694. data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +23 -21
  695. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +32 -30
  696. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +21 -19
  697. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +42 -39
  698. data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +91 -88
  699. data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +50 -40
  700. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +27 -25
  701. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +41 -31
  702. data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +19 -17
  703. data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +223 -0
  704. data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +21 -19
  705. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +27 -25
  706. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +23 -21
  707. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +23 -21
  708. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +23 -21
  709. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +46 -44
  710. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +38 -36
  711. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +303 -243
  712. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +62 -60
  713. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +42 -40
  714. data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
  715. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  716. data/vendor/local/share/doc/groonga/ja/html/server.html +19 -17
  717. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +21 -19
  718. data/vendor/local/share/doc/groonga/ja/html/server/http.html +21 -19
  719. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +31 -29
  720. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +23 -21
  721. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +23 -21
  722. data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +21 -19
  723. data/vendor/local/share/doc/groonga/ja/html/server/package.html +38 -36
  724. data/vendor/local/share/doc/groonga/ja/html/spec.html +23 -21
  725. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +128 -126
  726. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +22 -20
  727. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +19 -17
  728. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +25 -23
  729. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +22 -20
  730. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +20 -18
  731. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +29 -23
  732. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +34 -32
  733. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +22 -20
  734. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +46 -39
  735. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +21 -19
  736. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +66 -64
  737. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +52 -50
  738. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +25 -23
  739. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +22 -20
  740. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +25 -23
  741. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +35 -33
  742. data/vendor/local/share/license/groonga/README.md +6 -0
  743. data/vendor/local/share/license/mruby/AUTHORS +1 -0
  744. data/vendor/local/share/license/mruby/MITL +1 -1
  745. data/vendor/local/share/license/mruby/README.md +6 -5
  746. data/vendor/local/share/license/msgpack/README +219 -0
  747. data/vendor/local/share/man/ja/man1/groonga.1 +23512 -15126
  748. data/vendor/local/share/man/man1/groonga.1 +26542 -17745
  749. metadata +77 -3
  750. data/vendor/local/share/license/msgpack/AUTHORS +0 -0
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>検索 &mdash; Groonga v5.0.4-139-g6629adbドキュメント</title>
10
+ <title>検索 &mdash; Groonga v5.0.6-226-gd7da7e7ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: './',
18
- VERSION: '5.0.4-139-g6629adb',
18
+ VERSION: '5.0.6-226-gd7da7e7',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -27,7 +27,7 @@
27
27
  <script type="text/javascript" src="_static/translations.js"></script>
28
28
  <script type="text/javascript" src="_static/searchtools.js"></script>
29
29
  <link rel="shortcut icon" href="_static/favicon.ico"/>
30
- <link rel="top" title="Groonga v5.0.4-139-g6629adbドキュメント" href="index.html" />
30
+ <link rel="top" title="Groonga v5.0.6-226-gd7da7e7ドキュメント" href="index.html" />
31
31
  <script type="text/javascript">
32
32
  jQuery(function() { Search.loadIndex("searchindex.js"); });
33
33
  </script>
@@ -36,7 +36,7 @@
36
36
 
37
37
 
38
38
  </head>
39
- <body>
39
+ <body role="document">
40
40
  <div class="header">
41
41
  <h1 class="title">
42
42
  <a id="top-link" href="index.html">
@@ -54,20 +54,20 @@
54
54
  </div>
55
55
 
56
56
 
57
- <div class="related">
57
+ <div class="related" role="navigation" aria-label="related navigation">
58
58
  <h3>ナビゲーション</h3>
59
59
  <ul>
60
60
  <li class="right" style="margin-right: 10px">
61
61
  <a href="genindex.html" title="総合索引"
62
62
  accesskey="I">索引</a></li>
63
- <li><a href="index.html">Groonga v5.0.4-139-g6629adbドキュメント</a> &raquo;</li>
63
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7ドキュメント</a> &raquo;</li>
64
64
  </ul>
65
65
  </div>
66
66
 
67
67
  <div class="document">
68
68
  <div class="documentwrapper">
69
69
  <div class="bodywrapper">
70
- <div class="body">
70
+ <div class="body" role="main">
71
71
 
72
72
  <h1 id="search-documentation">検索</h1>
73
73
  <div id="fallback" class="admonition warning">
@@ -92,22 +92,22 @@
92
92
  </div>
93
93
  </div>
94
94
  </div>
95
- <div class="sphinxsidebar">
95
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
96
96
  <div class="sphinxsidebarwrapper">
97
97
  </div>
98
98
  </div>
99
99
  <div class="clearer"></div>
100
100
  </div>
101
- <div class="related">
101
+ <div class="related" role="navigation" aria-label="related navigation">
102
102
  <h3>ナビゲーション</h3>
103
103
  <ul>
104
104
  <li class="right" style="margin-right: 10px">
105
105
  <a href="genindex.html" title="総合索引"
106
106
  >索引</a></li>
107
- <li><a href="index.html">Groonga v5.0.4-139-g6629adbドキュメント</a> &raquo;</li>
107
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7ドキュメント</a> &raquo;</li>
108
108
  </ul>
109
109
  </div>
110
- <div class="footer">
110
+ <div class="footer" role="contentinfo">
111
111
  &copy; Copyright 2009-2015, Brazil, Inc.
112
112
  </div>
113
113
  </body>
@@ -1 +1 @@
1
- Search.setIndex({envversion:42,terms:{clumns:140,"\u30fbor":75,"\u51fa\u6765":[45,79,91],"\u7b2c\u4e8c":76,localstatedir:[156,192],"\u3082\u3089\u3063":3,four:[150,3],"\u660e\u78ba":81,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3":[37,98],"\u811a\u6ce8":[76,3,46,73,35,171],"\u3082\u3089\u3048":125,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[],"\u79d2\u60c5":28,"_column":[],"\u300calice":188,dewangga:78,"\u6b63\u5e38":[170,153],"\u5c02\u7528":[175,191,103,153,120],"\u30d5\u30c3\u30af":82,internally:[107,16],"\u5b9a\u5024":7,"/projects":153,"&q":132,"&s":132,"\u7b2c\u4e00":3,incremented:36,"\u3044\u304f\u3064\u304b":[91,143,26,70,104,192,167,109,152,153,116,61,159,63,162,47,50,23,166,126,180,181,185,134,191,140,193,85,195],"\u89e3\u9664":[22,1,177,98,80,108],second:[150,12],"\u4f5c\u3089\u308c":[170,81],"\u4e8b\u524d":[69,143,153,71,172,146,23],"\u30de\u30af\u30ed":[28,80,126,78],"\u30b7\u30f3\u30dc\u30eb":74,"\u5f15\u3044":152,formats:150,here:[41,12,132,98,190,49,9,150,65],onga:33,reported:[],china:131,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9":161,"&&":[71,186,109,144,152],"\u4e0e\u3048":[59,70,3,71,124,98,126,7,175,64],"\u4e2d\u8eab":[170,3,175,81],"_output":[],"\u307b\u3057\u304f":109,"\u7ffb\u8a33":[],"\u300c\"":98,"\u300c#":156,"\u300c,":159,"9e":193,"9f":4,unix:[136,192,81],txt:[88,85,120],"\u5ea6\u6d6e":46,"\u5bfe\u7167":116,"\u65e5\u672c\u4eba":179,"_check":[80,180,81],"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[],"\u975e\u63a8":[76,126,7,28,81,66],music:[45,150],tokenize:[],"_flags":[],"[pkg":[7,28],until:[41,19],"\u30d6\u30ed\u30b0":[],"\u6709\u529b":155,"\u7f6e\u304f\u4f8b":192,"[os":81,"\u4e0b\u304c\u308a":71,"\u5f15\u6570":[],"\u300cv":153,"(pos":[35,171],"_command":[],"\u6709\u52b9":[91,96,103,28,149,192,109,153,13,14,59,114,66,122,170,126,74,78,80,113,81,185,130,84,133,33,9],locked:41,"\u4e8c\u91cd":[78,126,81,185],"\u30e1\u30fc\u30eb":[0,153,120],"/functions":180,example:[45,109,3,131,12,132,13,98,123,75,9,29,179,103],"\u30af\u30a8\u30eaapi":78,"/blog":153,"\u6a2a\u5c71":[126,81],want:[132,98,129],"*cache":17,"<groonga":170,"\u4e0b\u304c\u3063":85,travel:188,feature:[120,98,9,12,84],machine:98,how:[],"\u884c\u982d":181,wrong:[],types:[155,18,134,179,49],"\u63fa\u308c":92,"\u30d7\u30ec\u30fc\u30b9\u30db\u30eb\u30c0":126,"_resource":[2,80],"\u5b09\u3057\u304f":125,"\u901a\u5e38":[136,109,91,3,185,13,46,16,7,61,9,140,78,193,178,96,81],keeps:86,"\u500b\u5b9a":135,wing:[7,126],"\u3042\u305f\u308a":[28,156],vars:[41,54],"\u30d0\u30eb\u30af\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":78,"\uff11\u5bfe":135,"\u30d1\u30c8\u30ea\u30b7\u30a2":[],"\u3078\u306e":[13,192],">\n<":4,"\u8fd4\u3063":[185,81,152],"_{":126,"-code":[153,81],"_w":85,"\u8fd4\u3057":[41,91,3,92,94,96,47,48,49,146,70,104,149,110,55,109,76,152,112,155,114,117,16,17,116,60,18,19,186,25,163,119,68,69,27,121,122,124,169,126,171,74,64,75,173,118,97,78,128,80,179,81,83,84,137,172,188,33,35,101,184],fix:[60,43,96],"\u8fd4\u3055":[59,109,11,155,124,7,127,80,81],"_s":81,"_desc":114,"_o":[2,175],"_n":[17,132,126],"_i":[2,175],fin:54,easier:12,"_a":[2,175],"\uff08tokenmecab":71,"\u3046\u3063\u304b\u308a":126,"\u30d7\u30ed\u30c8\u30b3\u30eb":[],"-daemon":[132,65],"\u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3":76,"\u516c\u8f14":126,"\u3082\u3063\u3068\u3082":180,"\u30af\u30a8\u30ea\u30da\u30a2":172,"\u8a8d\u8a3c":[],"_select":[],"(point":[35,76,171],"_deadlock":[2,175,80],timeout:[80,19],debug:[6,150,8,98,9],"\u6df7\u3056\u3063":85,"_$":[155,66],"_\"":28,"@do":81,"*keywords":39,rd:[71,145],re:84,rf:[130,9],"post\u30e1\u30bd\u30c3\u30c9":126,moritapo:45,rc:[91,150,2,5,16],rl:85,rm:9,ro:91,gregex:126,"\uff01\uff09":[18,179],"\uff01\uff08":120,"\u3042\u305f\u3044":118,"\u5909\u5316":133,"\u5168\u90e8":175,".msgpack":4,"/limits":140,ringtail:[126,81],"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":[],"\u307e\u308d\u3086\u304d":144,"\u771f\u507d":[13,152,46,126,185],libedit:[167,1,156,7,78,28,192],"\u5f31\u70b9":133,"[cmake":78,"\u8fd4\u308a":[75,109,131],"\u8fd4\u308b":156,"\u7d99\u627f":126,"\"localhost":175,"_locks":[2,175],"\u25a1\u25a1":125,"\u300cnew":188,"\uff08age":66,":bob":188,"2\u5104":67,mingw:[28,153],"nginx\u3089\u3057\u3044":81,"\u6607\u964d":64,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":[98,91,3,126,134],service:[78,142,18],"/home":85,"\u4f7f\u308f":[2,92,95,91,9,28,109,153,16,17,160,181,66,45,126,175,97,78,178,179,81,82,185,131,193,85],"-benchmark":[],"\u533a\u5207\u308a":[182,59,109,91,3,4,131,13,133,46,98,49,7,159,155,78,152,85,185],"\u533a\u5207\u308b":[109,156,178],master:9,"\u610f\u8b58":66,"\u8a8d\u8b58":125,"_db\u30d5\u30e9\u30b0":28,"'column":7,"{table":[116,109],"\u306e\u3059\u3079\u3066":[109,55],"\u4e0d\u5fc5\u8981":78,"(comments":186,"-common":[7,14],project:152,"_update":[185,109,2,114,122],"\u9006\u9806":3,boston:188,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":[],"\u4f7f\u3048\u308b":[109,185,98,126,7,181,78,28,192,81,82],"\u304b\u3069\u3046":[2,186,71,116,97,192],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":[],"-port":[132,170,98],"/max":81,object:[41,80,84,94,46,7,137,114,175,149,78,57,54,119,152],"\u7d22\u7528":[],"\"black":193,microsecond:150,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8":127,letter:193,"\u30c7\u30fc\u30bf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":55,"\u533a\u5207\u3063":[47,109,91,134,175],"\u4f7f\u3063":[0,91,3,92,5,46,145,48,7,2,102,9,149,152,192,55,144,167,109,12,153,86,13,113,14,16,116,18,62,160,181,66,164,45,69,70,121,71,125,126,74,127,75,175,78,118,178,81,82,130,193,185,131,172,120,188,134,33,136,154,101,138,89,90,85,103],released:[43,153],camp:188,"\u4f7f\u3048":[109,91,185,131,129,162,181,160,126,97,152,9,104,78,195,28,82,85,81,66],"\u4f7f\u3046":[],"\u4f7f\u3044":[],"\u66f8\u304d\u8fbc\u307f":[78,192],"\u66f8\u304d\u8fbc\u307e":194,unmanaged:127,"\u304by":126,"\u30d0\u30a4\u30ca\u30ea\u30fc":136,layout:153,grnslap:[],"2byte":175,"\u306f\u306a\u304f":181,"-enable":[89,156,20],createrepo:153,"\u79d8\u5bc6":153,"\u30a2\u30d4\u30fc\u30eb":153,"_age":97,"\u91cd\u307f":[],net:131,"\u30c8\u30d4\u30c3\u30af":153,"\u91cd\u3044":[133,109],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[],"\u5b9f\u9a13":[],"\uff08piro":81,"\u91cd\u304f":71,patch:43,release:[],unpatched:43,"\u69cb\u9020":[45,70,133,16,136,114,95],"\u5e83\u304f":[153,181],"[linux":7,"\u8ca0\u62c5":125,result:[70,4,33,114,76,175,79,65],"<port":[170,98],"\u5206\u304b\u3061":133,wikipedia:46,score:[3,12,49,128,109,76,152,86,155,71,60,18,45,70,122,123,126,75,78,29,179,132,188,116,79],"-stem":[154,14,81],"\u611f\u3058":125,shidara:28,"\u539f\u99c5":75,"&!":152,country:[173,103,131],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":193,"\u66f8\u304d\u8fbc\u3080":[78,170],"\u540c\u69d8":[93,70,153,13,170,75,175,64],"\u4e00\u6587\u5b57":78,"\u5931\u6557":[22,17,3,185,153,41,156,74,126,7,137,60,173,19,10,28,78,177,128,81,66],"\u30fb\u6d6e\u52d5\u5c0f":109,"\u95a2\u6570":[],diff:170,"\u5404\u7a2e":153,"\u6d88\u53bb":126,"\uff08node":82,"\u5360\u6709":80,"\u3044\u3046":109,correction:18,"\u30ab\u30f3\u30de":[59,3,152,131,159],worker:[],dave:97,"\u305f\u307e\u307e":55,"=query":132,"\"correction":172,"-message":[],spil:78,"/function":153,"_sel":43,"\u3069\u3093":106,"#set":170,"\u3069\u308c":[109,96,136,85,55,66],"_set":[17,42,94,124,16,7,25,117,19,64,78,80,113,54,81],"\u30d0\u30c3\u30d5\u30a1":[42,122,94,126,7,127,114,79,80,39],"\u65ad\u7247":33,"\u4ee3\u8868":133,"\u79d2\u6570":[136,109,152,13,188,46,83],"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3":126,reports:41,"_false":80,"\u540c\u68b1":[7,156,81,120],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30c1\u30e3\u30fc\u30c8":28,"1\u4ef6":[71,188],"_rectangle":[],"\u3069\u3053":[28,192,81],"\u3002db":[28,70,3,175,16],"\u53b3\u5bc6":[78,179,81],"\u30df\u30ea\u79d2":46,"\u7121\u8996":[109,91,178,159,71,95,156,98,126,7,114,173,134,104,78,64,28,85,81,185],"\u5fdc\u7528":133,"\u3069\u3046":[1,147,84,131,6,125,73,109,7,71,8,157,9,62,194,85,108],"\u30e2\u30fc\u30c9":[91,3,98,70,175,37,81],"\"canceled":104,suitable:[123,98,12],"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[109,91,71,145,18,64,85,81,66],"_skip":126,"_element":42,gzip:[],"_result":[109,2,114],sleepy:115,"\u4e00\u6c17":153,previous:[142,12],"\u5317\u4eac":76,had:12,easy:[98,12],"\u300ccharlie":188,has:[41,43,153,12,98,190,114,111,150],hat:[],"*vars":[41,54],"\u30ab\u30fc\u30cd\u30eb\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[7,140],"\u7c21\u7565":[101,126],"\"content":[152,165,109,185],"\u9001\u308b":[0,175,55,120],"\u9001\u308a":[175,153],"\u30d0\u30a4\u30ca\u30ea":[102,153],"_broken":2,"\u8d8a\u3048":[71,78,81],unique:[132,104],"\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc":93,">command":4,"_error":[41,2,175],"_ascending":64,alice:[109,185,188,116,60,9,97,128,55],"-unauthenticated":[7,154],"\u30d4\u30ea\u30aa\u30c9":[74,79],"\u30cf\u30a4\u30d5\u30f3":[3,66],sebastian:81,right:111,old:[41,153],"\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":[98,91,3,134],truncated:126,"|suggest":155,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3":7,"\u5358\u8a9e":[],"/ngx":9,"\uff08score":109,groogna:[113,55],"\u9001\u3063":[88,0,89,120],"for":[41,142,43,12,129,46,98,26,49,7,102,9,150,107,128,76,152,16,19,65,166,123,111,29,80,188,84,132,39,33,190,137,36,140,85],bottom:[28,111,35],"_reference":109,".asc":153,"\u30b5\u30fc\u30d3\u30b9\u30b9\u30af\u30ea\u30d7\u30c8":126,ichii:28,binded:[],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8":80,"\u5206\u985e":[13,131],"\u30b9\u30ef\u30c3\u30d7":140,"\"starttime":4,"\u89e3\u6c7a\u7b56":125,"\u306a\u3055\u3093":89,"\u65e2\u5b9a\u5024":142,"\u305b\u3044":[126,81],"_size":[],".am\u30d5\u30a1\u30a4\u30eb":153,"\u89e3\u91c8":[156,70,185,159],waits:[41,19],"_range":[],support:43,"_process":[2,175],joseph:144,"\u305b\u306a":[185,152],"\u5c71\u672c":81,"\u3086\u304d\u3072\u308d":144,thesaurus:109,"_org":153,pagerank:[123,29,12],"#value":78,"/tsv":[22,177,178,10],"\u5fa9\u65e7":[113,84,62],"\u8981\u7d20":[59,2,3,86,96,170,33,126,7,114,70,136],"\u30d0\u30f3\u30c9\u30eb":[78,126,81],"\u306e\u304b":[188,145],"\u9006\u5f15":45,"_sequence":[2,175],"\u306e\u3044":[11,6,133,46,98,59,76,114,8,175,70],"_records":[],exist:12,"'\"":[7,126],"'.":[80,120],"'-":[98,126],"',":[80,190,81,49],sizeof:[78,39,16],"')":[59,182,98,81],"'(":98,"\u306e\u306b":[],"\u306e\u3067":[142,3,145,7,102,9,78,146,55,109,76,153,13,116,66,69,23,71,168,125,126,186,140,28,79,178,179,81,82,133,33,136,191,97,188,37,120],"*nvars":54,"\u3001_":3,"\u306e\u307f":[],developers:[],"'t":[107,84,12,123,36,98,16,137,19,29,49,39,9],"'s":[115,109,185,12,129,123,98,59,186,150,136,152,120],"\u306b\u304f\u3044\u304b":85,"\u3089\u308c\u308b":[70,122,133,145,126,7,64,81,181],"\u88dc\u3046":133,"\u305b\u308b":[142,70,133,163,48,116,37,180,66],"'n":98,"'m":[115,188,165,79],"-latest":[],"-tar":24,"\u305b\u308c":133,"\u6bb5\u843d":[74,96,122],"_count":[],"\u5165\u529b\u30df\u30b9":18,time:[23,132,13,188,46,170,126,49,7,71,18,150,104,78,28,184,179,81,155],push:[153,120],"\u304a\u3053\u306a\u3063":3,":/":[3,4,98,102,9,104,105,192,55,167,110,153,86,13,14,17,159,120,45,24,75,103,81,82,182,130,131,132,154,37,90],"\u53cd\u6620":[133,70,153,140],"\u7b26\u53f7":[],":$":[144,152,185,20],"\u6d41\u308c":[],"-prefix":[],":#":81,"\u5c0f\u897f":126,"?arg":181,":>":[109,185],"\u3002rroonga":160,"::":[78,2,4,12],netbsd:[156,126],millisecond:19,"\u3042\u307e\u308a":[79,125,114],"\u7aef\u672b":133,"_builtin":[28,80,84,183],"\u6700\u7d42":[109,84,86],dragonfly:156,"\u500b\u5225":153,"\u30af\u30a8\u30ea\u30d1\u30e9\u30e1\u30fc\u30bf":7,"-root":[37,156,98],":~":[185,181],lru:118,"\u7d20\u6734":131,"\u6b63\u5f0f":81,".source":78,exact:70,"\u3092\u3064\u3051\u308b":152,minute:150,".body":[38,92,108],"\u30b9\u30af\u30ea\u30d7\u30c8":[],"{language":120,"\u6e08\u307f":[59,130,91,122,153,167,125,46,14,74,126,7,154,18,172,78,28,178,179,142],"-base":[132,65],":@":[45,109,3,185,13,188,116,103],":\\":[102,181],":^":[185,144],":[":[170,181],loads:[9,65],"\u540c\u3058\u6708":78,"\u8ad6\u7406\u548c":[],"\u7d50\u3073\u3064\u3044":135,"\u305f\u3055\u3093":[28,1,126,78],"\u7d50\u3073\u3064\u304f":135,sign:153,"\u6e08\u3080":78,"\u5316\u4f5c":153,makecache:[7,130],"\u4e8c\u9805":152,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9":81,".ncpu":90,"\u7d4c\u904e":[136,11,152,13,188,46,83,19,28,80],"\u30bf\u30d6":[178,4,175],takashi:[28,173],"\u540d\u7b49":80,"-ipadic":[167,85],"'='":98,"\u76ee\u5b89":153,"\u63a8\u9032":126,"\u30bf\u30b0":[],"gmo\u30e1\u30c7\u30a3\u30a2":81,"\u6d41\u3057":153,address:[7,28,98,175,132],"\u30a2\u30ab\u30a6\u30f3\u30c8":[26,81,153],"\u4e3b\u30ad\u30fc":[],"\u4e00\u62ec":114,queue:135,"\u8b66\u544a":[109,11,156,126,7,113,81],"\u3002offset":94,"\u5ea6\u6570":[13,28,75,152],ipa:167,pentium:170,prefer:132,"`/":20,logical:[],"\u6587\u5b57\u5217":[],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d7\u30ed\u30c8\u30b3\u30eb":7,bookmarks:[159,86],"\u4e88\u3081":[46,98],"{\"_":[45,109,152,13,75,97,185],"|table":66,droonga:101,"\u30d5\u30a9\u30ed\u30fc":[],scope:[],"/header":24,"\u3060\u3063":[109,11,152,71,7,114,78],"``":[1,156,39],"\u5168\u4e16\u754c":126,"\u3060\u3068":125,visual:[126,7,102,78,28,81],"_gt":64,"\u304c\u3069":140,"\u3002obj":80,"\u3060\u3044":[28,81],valuen:101,"_alloc":[41,39],values:[59,107,98,122,80],"\u3060\u3057":[28,170],"\u5024\u8a18":152,following:[41,122,12,129,132,98,190,20,150,65],pgroonga:[78,12],".md\u30d5\u30a1\u30a4\u30eb":153,locks:[41,137,33],logrotate:[7,81],allowed:65,"\u5897\u3084\u3059":[140,109,180,86],"\u6a19\u6e96":[1,147,3,6,98,8,9,106,108,11,59,157,159,194,161,73,74,127,175,113,81,182,83,37,38,141],chroot:153,divided:123,"\u30d2\u30e5\u30d9\u30cb":[76,171],parameter:[111,12,132,36,98,114,128,54],applications:33,date:170,such:[12,123,36,33,190,49,7,132,10,65,120],"?id":104,data:[],"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":[],"/dictionary":156,ss:[150,152],"/javascript":28,st:[91,85,152],sh:[153,82],so:[84,12,123,98,114,29,80],sa:[155,18],se:[91,179],"\u30e1\u30bd\u30c3\u30c9":78,"\u540c\u3058\u6570":[98,9,55],"[yum":7,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af":81,"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7":159,"\u30a2\u30c9\u30ec\u30b9":[170,98,114,103,28,175],"*query":[57,39],jis:64,"\u540c\u671f":[170,153],instantly:33,"\u30d7\u30e9\u30b0\u30a4\u30f3api":81,"\u4f7f\u308f\u305a":116,records:[150,78,111,49],"\u8d85\u3048\u308b":[7,64,168,95,13],matched:[123,132,29,111,12],"_memo":116,"\u7570\u5e38":[127,170],"_dat":[],"_dataset":[148,65,190,49],suffixsearchterms:[185,152],"\u4e26\u3073":[145,152],"\u4e26\u3079":[],"-terminated":[41,54],gtar:24,"\uff1f\u300d":131,indexblog:79,"\u30d8\u30c3\u30c0\u30fc":[],"-offset":109,container:39,"_msgpack":107,fu:91,".status":170,"\"search":[179,18,185,49],vervet:[78,14],"\"type":155,formula:153,"\u6700\u5c0f\u9650":9,"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0":[95,23,78],mime:[78,55],"byte":[122,36,170,33,7,114,175,78,80],"\u7d20\u65b9":133,".index":78,"\u30de\u30eb\u30c1\u30b3\u30a2cpu":192,"\u30d9\u30af\u30bf\u30fc":[],"\u4e00\u610f":[74,98,61,104],one:[41,12,129,98,33,137,65],"\u56fd\u969b":120,"*expr":39,"\u5b9a\u5b50":181,city:[188,76],"\u5bfe\u7b56":[],"\"sphr":171,"=encoding":[],"#'":98,"\u8fd4\u4fe1\u5143":188,"\u8fd4\u4fe1\u5148":188,"\u306b\u5bfe\u8c61":28,"\u88d5\u4e5f":81,"\u51fa\u3057":188,"\u540c\u6642":[109,11,133,135,170,114,75,64,78],effective:98,fumiyasu:28,groongau:85,"\u4e16\u754c":[76,13,46,35,75,171],argument:[37,152,12],sae:[155,18],"\u4e21\u65b9":[109,188,185,86,133,115,95,152,85,179,144],say:152,"/span":[163,33,48],"/ubuntu":[7,142,153],"\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":126,"\u30ea\u30b9\u30c8":[59,165,178,3,185,153,45,85,98,109,193,7,105,181,93,106,152,39,120],uuuuuu:152,"\u5ea6\u5408\u3044":71,note:[41,132,98],"\u30cb\u30db\u30f3\u30b8\u30f3":179,"[[\"":127,"\u5fdc\u7b54":[133,126],"\\\\z":181,buffer:[127,80,16],"\u5148\u982d":[109,3,94,9,80,85,181],debhelper:28,"\u5ea6\u5206":46,"\u30b9\u30da\u30fc\u30b9":[28,109,126,78],"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[],"\u672b\u5c3e":[64,94,80,23,181],"\u9589\u3058":[28,95],"\u4ef6\u6570":[109,3,71,145,59,114,61,78,80,81],"\u5217\u6307\u5411":133,"_cursor":[],xml:[],"\u5927\u4e8b":[178,185],"\u4e00\u6642":[],"\u3068\u3057\u307e\u305b":19,"_defrag":80,"\uff08tokenbigram":71,resource:175,"\u66f8\u304d\u8fbc\u3081\u308b":81,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":[],"\u76f4\u63a5":[188,159],"\u8868\u3057":[93,11,3,46,136,2,61,70,181],"\u7a7a\u767d":[91,3,185,71,133,98,49,59,134,78,85],"\u7528\u79d8":[],regexplexicon:181,"\u898f\u5247":7,".content":[109,152,115,186,140,79,185],"\u306b\u3068\u3063\u3066":[125,91,85],sites:159,"*column":122,"\u5927\u4e08":0,jobs:170,"\u7e26\u68d2":66,"\u4e0a\u554f":142,"\u5e73\u5747":[109,81],"@tomotaka":28,many:[123,129,190,12,86],"\u8fd4\u3059":[1,147,6,98,7,8,28,55,108,152,155,16,157,194,122,170,73,126,83,75,175,97,78,81,184,156,38,39],"\u30b3\u30ed\u30f3":74,"_otoj":180,expression:[132,69,39,109],")offset":[64,114],"-mecab":[167,130,14,126,7,154,81,90],"_t":2,"\u5404\u7d22":3,"(xxx":126,"\u3002http":126,"\u542b\u3080\u5024":[98,3],"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9\u30a8\u30e9\u30fc":81,"\u5468\u4e0a":171,"_synonyms":178,"*added":114,"\u898b\u4ed8":126,"'ja":120,enable:[],"\u6607\u9806":[109,3,131,75,114,64,80],"\u5b9f\u884c":[],"-bye":[47,152,165,109,185],"\u304a\u3051\u308b":[67,45,3,185,13,133,46,126,7],"\u3002\u3057\u304b\u3082":195,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0":72,"\u7406\u89e3":[109,3],"?table":[104,9,55,103],ctrl:[98,175],"\u4e0d\u5909":61,ivh:[167,130],"@lists":[153,26],".debian":153,".md":153,".me":[78,153,26],pthread:[28,126],"\u3002squeeze":180,ascii:[85,185,152],"\u304b\u307e\u3044":3,binary:[133,46,4],hostname:[37,98,9],"/pipermail":81,"_filter":[],"<path":[98,65],"_setoperation":114,"\u3002\u3057\u304b\u3057":[109,76,86,133,46,115,60,18,138,28,193,85,55],"_at":[],"error\u30bf\u30b0":7,"\u8ab2\u984c":[],"\u90fd\u6c11":[71,145],"\u5b9f\u88c5":[69,76,109,7,9,37,146,28,78,195,81,120],"_date":153,takahiro:156,customized:150,".key":114,wiedenroth:81,"\u53d6\u308a\u51fa\u3057":[64,121,3],"_normalize":[115,109,43,3,92,71,188,185,33,193,7,116,114,140,79,152,66],"\u53d6\u308a\u51fa\u3055":13,"\u30d3\u30eb\u30c9\u30a8\u30e9\u30fc":[78,81],customizes:12,"\u53d6\u308a\u51fa\u3059":[64,13,70,121,156],"_retry":2,"\u56db\u89d2":93,"(x":81,"\u6771\u4eac\u90fd":[71,145,85],"[token":126,"\"utf":124,"(r":[170,181],rest:41,gdb:180,"(a":82,"_pack":[],"\u3046\u3061\u3044":98,"([":68,"-neologd":85,"(_":[155,179,18,152,49],"\u30d1\u30e9\u30e1\u30fc\u30bf":[],"\u3042\u3052\u308b":[],haystack:70,dcmake:102,"\u6c4e\u7528":[170,98,9],"\u639b\u3051":152,"(>":70,"(<":70,"(=":[2,152,70],res2:114,"\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb":153,"((":[109,86],"()":[],"(.":153,"*tables":16,"(-":152,"(\"":[76,3,124,98,33,48,126,7,116,104,163],world:85,"(!":70,"(&":[78,39,16],"('":[59,61,3,74,98],meaning:98,intel:170,"_but":70,"\u95a2\u308f\u3089":[109,170],"\u4ed5\u7d44":[55,120],conditional:155,yyyy:[150,152],"_supported":[2,175],".load":170,"-full":153,"\u591a\u3059\u304e\u308b":109,exit:[],ddl:71,"(nginx":142,"/httpd":[142,9],"\u8a18\u4e8b":[115,79,153],"\u5168\u6587\u691c\u7d22":[],";\"":7,";/":[163,48],"package":[],"\u5ec3\u6b62":11,favorite:120,"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8":[28,55],"\u304b\u3048\u308b":186,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[193,134],"'or":7,"\u7b97\u51fa":[7,81],"\u306b\u3042\u308a":[134,66],"-size":[78,98],"\u6df7\u305c\u308b":86,"\u7403\u9762":[76,171],"_prefix":[],"\u8868\u8a08":178,"\u7530\u6cbc":81,"\u30e9\u30f3\u30ad\u30f3\u30b0":[3,81],emacs:120,"\u30aa\u30fc\u30d7\u30f3":[7,17,126,28],complete:[132,155,113,179,172],"/pull":153,"\u6b63\u898f":[],"with":[],"_load":[],"_types":[],pull:[],ideographic:78,october:81,"\u697d\u3057\u3044":[71,145],reqular:132,"\u304a\u77e5\u3089":[],gone:45,ac:193,uid:153,"| y":126,"\u30ec\u30b9\u30c8\u30e9\u30f3":133,am:[33,48],al:85,an:[41,111,84,12,98,114,9],"| n":152,as:[41,142,91,12,129,123,36,98,33,190,16,7,132,9,65,120],ar:[71,91,145],at:[43,188,98,111,20,150],"| c":152,"| _":75,"\u3002messagepack":[136,192],shimomura:7,"\u4e00\u65b9":[109,3,185,5,116,13,133,33,48,71,186,79,85,152],"\u30c7\u30d0\u30c3\u30b0":[78,91,9,81,127],"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":[7,170,102],"\u9806\u4f4d":94,"\u30b9\u30c6\u30c3\u30d7":181,queryexpandertsv:[],"\u6817\u5c71":[78,81],"_such":[2,175],original:[107,144,159],"\u5897\u5206":109,"\u6587\u6cd5":[],senna:[],"\u4ed8\u968f":[147,73],"\u30c7\u30fc\u30bf\u30d9\u30fc":28,"\u5408\u8a08":[67,109,71,95,170,127,168,81],"\u6e80\u3055":126,"_multiple":12,"-talk":[78,126,26,153],"\u548c\u5e83":126,tx:85,"\u901a\u4fe1":[],to:[],tail:[175,153],tf:[123,187,12],te:[91,85],homepage:170,tc:[64,121],returned:[41,111],"/other":9,"\u30ab\u30c6\u30b4\u30ea":[109,91,47],"/rurema":81,"\u3002column":[70,3,122],condition:152,"(popular":109,adjust:109,"\u5909\u308f\u308b":[71,163,85,33,48],"\u5909\u308f\u308a":[145,127,75,118,104,85],"\u4f55\u3089\u304b":46,"\u300c\u6771\u4eac\u90fd":71,"\u30ce\u30fc\u30de\u30e9\u30a4\u30ba":[91,134,126,81],"&gt":[163,33,48],"\u672c\u8a9e":85,"\u5927\u5225":13,pass:9,"\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9\u30ea\u30ea\u30fc\u30b9":[7,78,81],"\u5909\u308f\u3063":85,"\u7701\u7565":[],"\u7d22\u6642":156,"\u5897\u52a0":[109,126],"\u3067\u306b":[22,71,115,10],section:[41,87,98,122],"\u30ea\u30c6\u30e9\u30eb":[],"\u4eba\u5411\u3051":78,"\u5927\u5207":133,"\"\u672c":85,"\u6700\u65b0":[28,118,153,26,78],"\u3002timeout":80,"_modified":188,method:9,contrast:[98,9],full:[91,12,33,78,85,181],hash:[95,188],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u30e2\u30fc\u30c9":[47,91],"\u30ce\u30a4\u30ba":[71,18],sender:[132,65],tomygx:78,"\u975e\u516c\u958b":153,"_compare":80,"\u30af\u30a8\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8":109,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fcapi":7,"\u306b\u3059\u308b":55,via:49,followee:188,tokenizer:[],"\u30ce\u30fc\u30c9":[7,64],"\u7121\u540d":[114,80],"(init":16,follower:188,"\u3067\u3059":[91,3,4,5,7,2,9,10,11,12,88,14,16,17,18,19,20,22,23,24,186,27,28,32,33,36,37,85,93,13,46,47,48,49,50,54,55,167,192,59,60,61,62,63,169,65,66,67,69,70,71,72,74,75,76,78,79,80,81,82,84,39,87,154,89,118,0,92,95,96,98,100,101,102,103,104,106,107,109,110,86,115,116,114,119,120,122,123,163,125,126,127,128,130,131,132,133,134,136,137,140,142,143,145,146,149,152,153,155,159,160,165,166,168,170,171,172,173,175,97,177,178,179,180,181,182,185,187,188,193,195],select:[],executable:[],"\u3002\u3002":93,mecab:[167,1,43,153,133,14,126,7,154,156,78,28,192,85,130,81,90],"\u7406\u95a2":54,"\u4e0a\u8a18url":153,more:[41,166,12,123,98,33,175,65],"\u30c6\u30ad\u30b9\u30c8":[47,91,153,86,85,163,156,134,33,48,126,7,110,193,181,78,120,39,170,66],"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8":45,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[72,86],"\u518d\u5229":[95,109,61,81],"_argument":[64,114,2,175,80],"_messages":[153,120],endpoint:[132,65],"_adjust":[109,57,70],learn:[132,65],";b":[163,48],"\u6bd4\u8f03":[],scan:180,"_descending":64,accept:[36,156],states:173,gronoga:9,information:150,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0":28,netinet:78,"'now":188,"=dat":113,"\u52d5\u7684":[],"\u5b9f\u884c\u4f8b":[91,3,92,12,96,69,48,49,7,146,101,9,10,149,106,128,144,109,11,152,86,13,155,115,116,60,18,118,169,163,66,22,45,165,27,23,123,150,83,186,75,76,175,97,47,79,177,179,180,181,185,131,132,188,134,33,136,137,173,110,193,85,103],"\u5019\u88dc":[155,18,179,172],"\u306b\u3059\u3050":115,"\u30fb\u81ea\u5df1\u7d39":188,"\u559c\u3073":[88,120],github:[0,74,153,126,7,78,105,28,120,81,82],tokenbigram:[],register:[],replied:188,"\u666e\u53ca":133,sysctl:[140,168],"\u52d5\u753b":45,"\u8f09\u305b\u308b":153,".co":[109,43],installer:153,its:[41,98,39,150],saucy:[126,81],".rpm":[167,130],"\u9577\u5185":81,"\u63a5\u7d9a":[],"[tokenizer":[7,126],"_weight":[74,96,122,81,86],salamander:[126,81],"\u6271\u3044":[11,13,145,85,179,81],"\u6271\u3046":[168,2,23,152,166,71,133,126,26,140,63,143,113],"\u6271\u3048":[100,16],"\u30d0\u30a4\u30ca\u30ea\u30c7\u30fc\u30bf":7,"\u5c0f\u306a\u308a":[],events:55,"\u6271\u3063":[188,1,126],"\u30ad\u30e3\u30b9\u30c8":[185,188,156,126,7,113],"[doc":[126,7,78,28,113,81],found:[114,111],".offset":114,"\u534a\u89d2":[64,193,3],"\u540c\u7fa9":178,"\u9ad8\u901f":[45,1,70,3,185,93,95,72,126,171,76,181,133,195,28,152,85,55,66],operation:[137,111,175],"\u6271\u308f":[93,109,91,185,13,170,126,16,7,71,78,193,81],really:[109,185,152],"\u524d\u8005":[75,193,178],"_entries":[17,118],"\u30ab\u30d0\u30ec\u30c3\u30b8":[],"\u30de\u30eb\u30c1\u30b3\u30a2":133,"\u6e2c\u7528":1,"\u305d\u308d\u305d\u308d":3,"/locale":[120,153,20],ftb:43,"_client":152,"/etc":[142,153,168,7,154,9,140,178],"\u6975\u4ed8":[76,171],"_hit":[3,4,83,103,9,175],"\u3053\u3053\u3067":153,"\u30a6\u30a7\u30a4\u30c8":74,"_user":[],"\u3002\u3069\u308c":132,"-keyring":[7,154],number:[41,111,152,12,132,123,170,98,49,127,140,54],"_pipe":[2,175],"\u3059\u3079\u304d":70,"\u7d42\u308f\u308b":[115,185,152],"\u30b3\u30d4\u30fc":[122,153,94,114,7,60,159,80],"/disk":181,"|enable":91,"\u533a\u5207\u3089":28,introduction:[],"\u30c9\u30e1\u30a4\u30f3":[131,81],">\u3001":157,"_stack":2,"_del":78,"\u642d\u8f09":133,"\u5b66\u7fd2":[],"\u56de\u547c":156,"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb":78,"\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3\u30d0\u30b0":81,listen:[7,98,9,55],"\u60f3\u5b9a":[83,45,159,127],"\u5b9f\u969b":[67,45,23,166,71,126,140,63,143,79],toybox:13,canceling:36,"\u52d5\u74b0":182,"*data":94,"\u66f8\u304d\u63db\u3048":[153,82],gted:120,"\u30e1\u30e2\u30ea\u30fc":[78,140,66],qps:[182,170],"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8":[156,98],self:170,"_lock":[41,28,80,19],also:[109,185,12,129,132,36,33,152],internal:81,"\"theatre":92,"\u8a18\u53f7":[156,3,71,145,98,85],play:92,"\"\\n":78,"\uff08todo":152,brooklyn:188,"\u306e\u3069\u3061\u3089":[109,152],"\u3060\u3055\u3044":[0,3,7,149,9,105,192,55,109,152,153,86,14,180,181,120,24,175,78,178,81,82,193,185,131,133,136,138,89,66],tokens:91,exe:[102,153],"_uint":183,cover:33,umemoto:28,"\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0":81,arted:152,ext:91,"\u6d3b\u304b\u3059":109,"_vsize":[39,16],"\u7d42\u308f\u3063":5,"_processes":[],microsoft:[78,102],"\u3057\u304b\u3057":[109,152,71,85,145,140,79,181,178,55,120],"/command":[37,181,9,103],xcode:90,session:[132,129],"-memory":156,"\u6570\u3048":131,"\u77e9\u5f62":[133,75,35],"\u5143\u6c17":126,columnn:7,"\u9577\u578b":[64,96],"\u6642\u306b":28,failed:19,"\u51e6\u7406":[1,2,94,134,145,47,48,7,91,9,55,109,152,61,120,165,70,170,126,75,175,78,81,185,133,156,32,33,66,85],factor:[109,81],"\u5225\u9014":[46,80],"\u30bf\u30fc\u30b2\u30c3\u30c8":7,columns:[59,109,156,190,7,140],"]]]":[71,155,157,152],"\u5fc5\u305a":[109,11,72,114,175,66],"\u30ec\u30b9\u30dd\u30f3\u30b9\u30d8\u30c3\u30c0\u30fc":55,"\u3082\u3057\u3054":7,"_point":[45,171,111],"\u30ed\u30b0\u30ec\u30d9\u30eb":9,bytes:[41,67,54],"\u6c7a\u3081":[23,66],"\u3082\u3057\u3042":78,"\u7528\u610f":[109,76,153,170,49,172,18,70,192,140,80,85,179],"\u3082\u3057\u304f":[143,46,48,7,9,167,152,153,13,114,63,64,23,166,168,163,126,175,97,78,79,81,185,33],set:[80,170],"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":[74,1,156,126,7,180,78,28,81],see:[41,36,98,20],sed:[7,28,78],sec:19,"\u547c\u3073\u5143":16,sea:[91,179],sen:43,"\u8a00\u8a9e":[],juman:167,fullwidth:78,currently:[107,9,84],mutex:[41,126],"\u65e5\u4ed8":[133,76,153],"\u3068\u3068\u3082\u306b":13,"\u3082\u3057\u308c":[178,85],available:[41,43],"<span":[163,33,48],"\u304c\u3064\u3044":[7,95,109,156,86],javascript:[],"\uff09\uff08":66,"\u3082\u304d\u3061\u3093":9,"interface":132,"\u500b\u4eba":192,"\u6790\u5668":[133,85],"_already":[2,175],"\u77e5\u308c":[69,23,134,125,146,79],last:[7,188],"\u77e5\u308b":131,"\u632f\u821e":76,"\u578b\u5909":28,connection:175,"_filename":2,"<#{":150,"\u30a4\u30f3\u30b9\u30da\u30af\u30b7\u30e7\u30f3":126,load:[],geolocation:[123,29,12],rdiscount:153,"):":[142,153],"@ceekz":126,"\u9577\u5185\u6b69":81,"-adjuster":[109,86],"\u30b9\u30ec\u30c3\u30c9":[133,135,170,16,98,55],"))":[78,109,178,152],"\u30ca\u30ce":[136,156],")-":153,"),":[74,123,29,126,12],")/":78,").":[142,153,12,123,98,33,132,187],"_exec":[2,39,16],")\"":[110,185,12,123,126,33,92],".htpasswd":[9,55],")'":[45,185,188,163,33,48,49,186,75,18,155,149,179,152],"[rpm":[126,7,78,28,113,81],tablename:11,"\u7c21\u6613":[142,76,81],"\\%":102,"\u30d1\u30e9\u30e1\u30bf":[41,42,80,121,84,94,183,124,114,16,17,25,117,111,19,64,57,39,54,119,122],shinya:7,"\u6bb5\u968e":140,func:[41,54,16],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":165,"\u3067\u307e\u3068\u3081":178,")]":126,")\\":181,"-api":88,"\u3067\u306a\u3051\u308c":[185,152],"\u5236\u9650":[],"\\(":185,"-apt":14,error:[41,111,6,98,126,16,136,123,8,9,150,81,181],"\u30d9\u30af\u30bf\u30ab\u30e9\u30e0":[7,28,126],"_nromalize":193,"\u632f\u821e\u3044":[7,116,126,81,97],"\u63a1\u7528":[71,133,175],"<=":[188,152,9,126],binding:[163,43,48],"\u5316\u524d":61,"</":[163,110,4,48,33],"<-":55,"\u4e38\u62ec":3,"\u4e00\u7fa4":70,"_ptr":[41,39,16],"\u8a00\u3048":[71,185],"\u56de\u52d5":170,alert:[6,98,8,9,150,81],levels:9,ifexists:59,stack:[126,175],"\u7121\u99c4":133,"1\u5ea6":5,"\u8981\u6c42":[125,3,126,186],"-path":[],"_file":[2,136,9,178,55,175],mysql:[167,109,43,153,12,86,133,163,14,134,33,48,154,178,130,81],"\u5316\u51e6":[28,61],"\u30bd\u30fc\u30c8":[],"_files":[2,175],location:[],input:[59,136,107,175],emergency:[150,98,9],format:[41,43,4,132,150,37,107,120],"\u30cf\u30c3\u30b7\u30e5":[7,78,83,153,127],"\u30bd\u30fc\u30b9":[],"\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea":153,"\u540c\u7b49":[145,170],"continue":81,"\u308f\u3051":[109,91,152,13,47,140,179],"\u4ed5\u65b9":[],specfied:111,"_flow":[2,175],"_bool":[156,80],"\u30af\u30ed\u30fc\u30f3":192,"\u65e2\u77e5":23,bm:[123,12],"-mruby":[153,81],"\u4f9d\u5b58":[],"\u4e0a\u4f4d":[71,114],wget:[167,130,24,14,154,192],by:[],"\u30aa\u30fc\u30d0\u30fc\u30d8\u30c3\u30c9":[142,81],"1gb":78,"\u3068\u308f\u304b\u308b":153,garbage:[127,126],"\u983b\u51fa":78,into:[132,49,16],"\u3088\u308a":[46,145,7,101,28,192,109,76,152,86,13,115,64,66,70,71,170,126,78,79,171,178,179,81,181,185,131,188,156,138,140,85],"|key":[109,3,92,71,188,185,33,115,116,144,140,79,152,66],"\u8457\u4f5c":81,"\u30d5\u30a9\u30ed\u30ef\u30fc":153,pcre:7,span:[163,110,33,48],submit:[132,155,18,179,49],custom:12,"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[],"\u5074\u9762":133,"\u6574\u3063":180,opens:[111,84],"\"keyword":109,link:[13,103,131],line:[129,136,82,9,16],"\uff08ci":82,posted:188,"\u8868\u3059":[68,91,45,13,74,76,70,93,181],".php":153,up:4,".am":20,ul:91,"\u5206\u89e3":70,ui:109,"\u3054\u307f":[125,126],"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":[],defined:[],"char":[41,84,183,124,16,114,80,39,54,81,122],"[sharding":78,"\u3054\u3068":[],"\u3075\u308a":155,"\u633f\u5165":[3,153,94,98,33,7],defines:190,codes:[153,5],taro:45,">uptime":4,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8":153,"=null":[137,109,91,118,66],invalid:[41,132,109,175],"\u8868\u308f":80,"\u898b\u4ed8\u3051":126,"\u7acb\u3061":136,elements:86,".dump":28,"\u985e\u7d39":71,lucid:[156,126,153],"\u6307\u5b9a":[],"\u4e00\u7dd2":[1,76,3,122,86,71,109,16,7,149,85,81,66],"\u3088\u304f":[109,97,85,181,86],"\u3088\u3046":[],"\u3088\u3044":[109,185,131,152,79,80,55,120],"\u3088\u3073":70,age:[96,109,97],"/wgs":75,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9":126,oracle:[],"\u3088\u3063":75,"\u8a66\u884c":133,hello:[47,152,109,165,115,85],code:[136,150,128,4,120],partial:70,"\u3067\u307f":133,",\"title":3,results:[7,132,114,33,166],existing:[98,65,20],"/sysctl":[140,168,90],"\u843d\u3061":[156,126],"\u3067\u306f":81,"\u3067\u306e":[136,85,33,81],"-lzo":74,"/json":[28,9,55],"\u3067\u3069":155,"\u3067\u3057":[24,13,152,81,78],"[label":[78,109],"\u8a2d\u5b9a\u6e08\u307f":142,sigsegv:114,":..":109,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[28,156],"\u3067\u3044":[13,78,109,152,188],"\u30ea\u30af\u30a8\u30b9\u30c8uri":9,"\u3067\u304f":[109,152,86,138,89,178,81,82],"\u3067\u304d":[],resources:[5,16],"{user":140,"-lz4":[],"\u7279\u306b":[70,153],provides:12,"\u8fbc\u307f":[194,178],"\u8ca2\u732e":126,"\u983b\u5ea6":[78,155],"\u6368\u3066":28,".clean":153,"\u5f15\u304d\u7d9a\u304d":126,"try":[188,98,19],"this":[41,3,92,98,7,9,150,107,55,109,152,13,16,20,122,80,185,84,132,33,190,137,103],">rroonga":[163,48],"\u6b8b\u308a":[109,11,178,66],".sub":109,"\u30aa\u30d7\u30b7\u30e7\u30f3":[],"\u53ce\u307e\u308a\u304d\u3089":78,"_posting":[111,121],video:45,".xml":4,index:[45,43,121,84,153,87,96,185,33,111,140,79,152,81,122],directive:9,"_operator":[114,57,39,122,111],"\u306e\u3067\u3057\u3087":109,"\u30bd\u30fc\u30b9\u30d5\u30a9\u30eb\u30c0":102,"\u30ef\u30fc\u30ab":9,"\u5224\u65ad":[84,152],"\u5fc3\u304c":180,nargs:39,"\u516c\u958b":[153,156,126,17,28,81],"?parameter":9,let:115,ubuntu:[],ctx:[41,84,135,16,17,114,80,39,54,122],"\u73fe\u308c":91,"\u3067\u3082":[0,2,3,95,145,48,7,102,9,78,192,167,109,153,14,116,180,66,71,170,126,74,186,75,175,28,79,179,81,181,130,133,33,154,138,120,85,103],".fedoraproject":130,buffered:87,"\u8d85\u904e":[168,126],firefox:120,"\u30c7\u30b6\u30a4\u30f3":7,"\u9014\u4e2d":[153,98,7,18,175,179,81],"\u3046\u3048":[7,28],standing:129,"\u3059\u304f":186,zip:[],illegal:175,"\"sea":179,"\u3044\u304f\u3064":[89,181],next:[111,54],"\u3046\u3061":[93,11,122,7,127,114,70,97,64,28,80],"\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3":78,"\u30b3\u30e1\u30f3\u30c8\u30c6\u30fc\u30d6\u30eb":79,"=complete":132,"\u30af\u30a9\u30fc\u30c8":[91,134,185],"\u3059\u308b":[],"\u7d4c\u7def\u5ea6":[],"\u3059\u308c":[22,109,3,185,131,133,163,97,170,114,10,78,85,153,152],"/usage":12,src:114,"\u3059\u3080":23,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":[],"\u8ff0\u8a9e":78,occurred:111,"-leaner":65,central:188,flushviewoffile:78,"_escape":[],"\uff08groonga":78,"/linux":[],"\u6b8b\u308b":28,"(wgs":75,"\u30d8\u30c3\u30c0\u30d5\u30a1\u30a4\u30eb":7,"\u6e21\u3055":[7,76,70,54,126],"\u6e21\u3057":[70,3,104,59,103,62,78,81,185],"\u6e21\u3059":[113,78,3,152],"\u5171\u306b":[80,122],".domain":78,"\u6b8b\u3063":[156,126],"\\\"a":186,"\u3002\u3064\u307e\u308a":[109,3,185,19,85,92],"\u306f\u6708":152,process:[],lock:[],"_estimate":[28,111,78],"\u7d30\u5206":13,"\u3059\u3050":[133,104,55],"\u6301\u3061":[109,91,72,96,98,70,9,181],"\u6301\u3063":[109,91,185,86,133,96,125,7,18,27,169,193,134,152],"\u6301\u3064":[45,109,27,3,152,131,93,13,133,96,59,76,114,18,61,186,169,28,193,135],"\u6301\u3066":[165,96],"\u30d0\u30ea\u30e5\u30fc\u30b5\u30dd\u30fc\u30c8":95,"\u3059\u3067":[91,153,145,115,60,140,81],"\u3059\u3079":[109,91,152,159,95,175,170,140,81,137,188,11,9,70,78,28,128,85,179,55,108],"\u6b8b\u3057":109,defalt:156,"\u9664\u7b97":[],"-gqtp":[],"\u3044\u304f\u3089":133,"_')":[74,61],"\u4e26\u3073\u9806":75,">starttime":4,tomotaka:28,"\u8a2d\u5b9a":[],alloc:[3,4,175,98,83,103,9],"\u4f53\u8fd1":171,"\u578b\u540d":96,element:[152,86],"\u9078\u629e":[],allow:[7,154,109,185],":\\\"":59,op:[114,57,39,122,111],"[httpd":[7,78,126,81],"\u8abf\u3079":[94,35,80,131,171],"\u30ab\u30d0\u30fc":180,lz4:[192,81],naist:85,"\u30e6\u30fc\u30b9\u30b1\u30fc\u30b9":[85,86],comma:78,"\u30af\u30a8\u30ea\u30d1\u30bf\u30f3":182,yamaguchi:28,perfect:123,"\u3092\u3064\u3051":[109,23,185],"\u6539\u884c":[113,28,98,78],"_unavailable":[2,175],"\u6587\u66f8":[],"=platform":[],"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":1,hobby:150,"\u30c7\u30a3\u30b9\u30af":[78,1,79],"\u5de6\u4e0b":1,"[space":185,"\u5165\u308c\u308b":181,python:[129,153,20],billiard:[71,145],lzo:[74,122,7,175,28,81],"\u53f3\u4e0b":[35,1],"_implemented":[2,175],"/master":[120,82],"\u7121\u9650":[7,156,81],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30dd\u30fc\u30c8":81,"_none":107,".js\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":82,doing:137,"-patch":120,"\u753b\u9762":[1,153,81],frequency:[12,123,155,49,187,18,179,81],"\u30b3\u30e1\u30f3\u30c8id":188,"-fd":[132,28],"\u3002\u7701\u7565\u53ef\u80fd":163,"\u4e57\u308a":23,initialize:16,"\u4ed5\u69d8":[],"\"\uff08":179,"\"\uff09":[13,1,75,179],"_friends":45,length:41,assumed:54,"3ki":156,"\"timestamp":23,owned:39,"\u63db\u3048\u308b":[72,153],occurrences:123,"\uff08\u300c":[71,193],owner:9,"\u9069\u5408\u7387":85,"\u5897\u5927":76,"\u5bb9\u91cf":[78,109,127],"\u30cb\u30db\u30f3\u30b4":179,behaves:132,system:[109,185,24,46,98,33,152],"-keys":153,"\u30b9\u30da\u30eb":178,"\"weight":13,back:152,"\u304b\u3061":[109,145],"\u304b\u3064":[64,109,145,126,152],"_logger":[7,78],"\u304b\u3069":[109,185,159,71,155,97,35,75,9,62,168,171,81],"\u756a\u76ee":[109,91,3,185,13,96,134,126,114,64,181,152],"\u8ffd\u8de1":[],itagaki:156,"\u500d\u7cbe":46,"\u6253\u3061\u5207\u308a":126,"\u304b\u3051":[126,108],"\u3002json":59,"_results":114,"\u304b\u305a":[7,81],"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":145,"\u304b\u305f":78,"-searchu":85,"false":[91,144,6,46,8,147,104,108,152,153,13,116,60,157,194,163,73,126,74,186,173,97,128,81,185,156,137,101],"_request":104,"\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":4,"2grn":81,"*s":81,"_charlen":41,"\u304b\u3082":[69,27,23,185,134,125,136,169,60,104,146,79,181,81,152],documents:[123,116,33],"\u304b\u3089":[],"\u3044b":[71,145],tokendelimitnull:[],"_const":[70,39],"\u3069\u3061\u3089":[0,3,134,16,172,72,79,55],"/repositories":153,"*init":54,okapi:[123,12],"\u672a\u958b\u653e":156,"*/":[39,5,16],"\u3089\u308c":[17,91,3,92,133,96,156,106,126,7,70,104,95,125,28,79,85,173,108],"**":[122,8,64,80,54,84],"\u3064\u3076\u3084\u304d":115,"*'":109,segment:127,"\u6e80\u305f":[186,75,70,181],"*\"":[148,79,109,81],latin1:7,"\u5168\u89d2":[64,28,193,3,78],"\u3067\u3059\u306d":125,"\u5408\u81f4":[75,3],"mo\u30d5\u30a1\u30a4\u30eb":120,"(arugment":152,"*res":[114,57,111],"\u30ea\u30af\u30a8\u30b9\u30c8":[147,6,8,9,104,106,55,108,109,152,157,159,194,161,73,126,83,127,175,81,182,74,36,32,37,38,141],"\uff08virtualbox":153,brew:[90,20],".gz":[167,130,153,24,14,90,154,192,120],"=r":7,"_initialized":[2,175],"_literal":81,"=g":132,"'localhost":[182,98],"=`":20,"\u4f50\u85e4":78,"=i":153,"=\\":[163,110,33,48],should:[41,36,128,20,16],terminal:[188,98],"\u8d70\u3063":60,"\u5373\u5ea7":78,"\u30ea\u30ea\u30fc\u30b9":[],"\u5316\u5bfe":120,handle:16,means:[41,109,111,123,137,9,150,107],"==":152,"=$":[192,153,120],"='":110,"\"ellip":171,"=\"":[109,4,24,163,33,48],"=-":192,"=/":[178,192,98,180,153],db2:55,"=)":70,"=(":153,">cache":4,"\u307b\u3068\u3093\u3069":[78,16],"_search":[],nise:81,"\u64cd\u4f5c":[],travis:[],"\u7cfb\u5ea7":[35,171],"/doc":153,"\u57f7\u7b46":[93,79,100],"\u3002debian":180,"\u306b\u3064\u3044\u3066":[91,3,12,6,7,2,10,11,13,14,18,19,22,23,24,186,27,28,32,35,8,38,85,147,46,49,50,55,167,59,60,62,63,64,66,53,68,69,70,73,74,75,76,78,80,81,82,83,86,154,89,90,0,129,96,100,104,106,192,108,109,171,112,116,118,121,123,126,127,128,130,131,133,134,137,140,141,143,145,146,153,155,157,159,161,162,164,47,166,168,169,173,175,177,178,179,181,185,188,184,194],"\u8ffd\u8a18":[7,153],"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8":125,"_connected":[2,175],"\u30b9\u30bf\u30c3\u30af\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":126,"/var":[142,98,9,62,78,192],"\u8d70\u3089":60,"\"\u8a9e":85,"/status":[182,103,4,55,9],webclips:110,valgrind:180,"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4":[185,95,156,126,28,152,66],etc:[140,9,55,153],tld:131,":\u5206":188,ci:[],ch:91,"\u533a\u5225":[46,181,109,144],allocates:41,ce:85,"\u6df7\u5728":[37,78],"\u7d99\u7d9a":[7,98,82],"\u591a\u69d8":133,zenigata:45,"\u66ff\u3048\u308b":3,allocated:41,"\u306b\u3044\u304f\u3064\u304b":[78,126],"\u304a\u3055\u3089\u3044\u3057":125,"_itoh":28,"\u5f97\u3089\u308c":101,"_vesion":[149,110],"\u30a8\u30e9\u30fc\u30ec\u30dd\u30fc\u30c8":7,"[plugin":81,adjuster:[],"@yappo":[126,81],"\u58ca\u308c":[156,7,127,62,78,28],"\u3002\u00d7":125,"\u4fdd\u6301":[17,13,100,188,16],"\u524d\u8ff0":[71,193,9,66],"\u5968\u6271\u3044":81,"\u5de6\u4e0a":[35,1],"\u6b20\u843d":126,tokenkytea:7,ultra:45,"\u307f\u305f\u3059":188,"\u73fe\u308c\u308b":71,"\u58ca\u3059":7,"\u58ca\u3057":62,site:[3,131,13,137,75,103],"_versions":153,"\u305d\u308c\u304b\u3089":[109,86],"|..":81,"\u8a71\u3057":89,"\u3002\"":[131,71,188,126,18,101,103,52,81],"\u3002#":[28,156,188],"\u3002-":[64,94,192],"\u3002.":120,"\u3002(":[167,142,70,153,170,98,59,173,19,64,79,54],"\u3002)":[64,79,173,170,109],"\u300cbilliard":145,"\u4f5c\u3089":23,"\u30ad\u30fc\u30ef\u30fc\u30c9":[],"_valule":101,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u30ea\u30b9\u30af":81,"_vprintf":81,"\u518d\u5ea6":[78,70,19,81],"\"roonga":172,v1:70,v2:70,architectures:153,".group":186,"\u3002_":[61,3],"\u3002[":[7,78,3,126,81],"_lzo":[74,2,122],off:[9,81],"\u3002c":[88,133,2],"\u3002n":[71,91,134],"\u4e00\u77ed":133,command:[],ecmascript:[7,109,160,126,152],"_recover":[84,81],"\u3057\u306a\u3044":78,"\u81ea\u7531":[133,70,61,175],"\u5149\u7537":126,"\u9806\u5e8f":[71,106,109,3],web:[1,185,153,155,109,49,18,192],"\u6b63\u898f\u5316":[7,134,33],"-values":78,valid:49,"\u3053\u306a\u308c":23,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9":98,dest:[182,114,98],"|http":170,increases:123,five:3,"\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb":[28,66,126,152,95],tvsec:83,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":[],"\u5947\u6570":152,"\u4f4f\u3093":188,"\u672c\u8cea":170,become:43,"*target":39,"\"rect":[7,171],"/source":[120,130,153,154,88,14,24,102,20,167,192,90],"\u5727\u7e2e":[],"\u63db\u3048":[64,80,92,181],"\u30dc\u30bf\u30f3":[7,126,153,120],"\u53d6\u308a\u9664\u3044":114,"_group":114,"\u53d6\u308a\u9664\u304d":[110,70],"(debian":142,"_rc":[41,42,109,80,84,5,94,87,124,114,16,17,25,117,111,19,64,57,39,54,122],iwai:[7,113],"\u5206z":46,"_queries":[3,4,83,103,9,175],"\u91cd\u307f\u3064\u304d":81,"\u3053\u306a\u3044":81,software:14,suited:33,"\u7d42\u4e86\u30bf\u30b0":163,"\u7d42\u3048":153,"(get":182,virtualbox:153,"\u300cusers":188,"\u9805\u76ee":[1,109,100,83,127,142,55,66],"-node":130,"_remove":[],"_started":136,"\u89a7\u4e0b":180,"function":[41,43,12,123,16,136,132,175,29,162],"\u300cpopular":109,"-db":113,"\u7570\u306a\u3063":[64,78],getenv:78,sigstop:126,"-point":46,be:[41,12,129,98,49,10,150,29,111,16,114,20,65,122,123,128,80,84,132,36,137,39],count:109,compute:123,"\u4e00\u756a":[109,192,152,55,86],"\u7a7a\u6587":[46,185,81],"\u3002iptables":103,"[info":181,problem:[],yuki:28,bigram:[],"int":[41,3,4,12,45,94,87,46,49,7,54,123,109,76,152,86,13,155,114,16,17,116,60,18,19,25,68,121,122,71,183,126,64,75,111,97,79,80,179,81,185,84,131,128,188,156,39],"\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3":81,inv:170,"\u65b0\u8a9e":85,"\u69d8\u3005":[],"*proc":94,"\uff08not":160,"_system":[28,2,175],"%post":7,mizuhara:78,"\u7570\u306a\u308b":[],"\u7570\u306a\u308a":[109,185,81],"\u5f85\u3061\u53d7\u3051\u308b":[103,175],"/default":[7,142],details:[41,36,150],"'user":116,"\u4eba\u3068":125,"/sources":[154,153],"_query":[],"+ff":[78,193],needed:[9,16],eof:98,"_hugetlb":28,"\u30c7\u30fc\u30e2\u30f3":[],searched:111,"& _":75,"*string":39,saves:132,all:[109,111,92,36,185,152,49,7,137,150,16,122],"\u3070\u308c\u308b":156,lgpl:43,"const":[41,84,183,124,113,16,114,64,80,39,54,122],"/travis":82,spec:[7,156,126,153],"\u30e9\u30a4\u30bb\u30f3\u30b9":7,"\u304b\u305a\u3072\u3053\u3055\u3093":7,"\u4e0b\u66f8\u304d":93,"_egn":[],"\u3002tokendelimit":49,"\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":153,replication:12,jacob:78,"\u4f8b\u3068\u3068\u3082":76,".en":153,"\u932f\u8aa4":133,upload:153,msyql:86,"[macports":28,starttime:[3,4,83,103,9,175],"\u7c21\u5358":[],"\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":156,"\u69cb\u9020\u4f53":[121,54,81,16],"\u304c\u3072\u3068\u3064":178,"/branches":180,"\u65e5\u672c\u6e2c":76,incompatible:175,"\u9006\u6587\u66f8\u51fa":81,zunda:28,above:[132,104,49],"\u4e8c\u3064":[91,47,11,23,166,116,170,145,134,16,76,101,186,63,143],"\u578b\u3068\u3057\u3066":46,"\u30a8\u30f3\u30b3\u30fc\u30c9":[37,193,156],"\u30af\u30a8\u30ea\u30ed\u30b0":[7,28,18,179,49],obtained:41,items:109,"\u540c\u3058\u4f8b":79,"-admin":7,"\"sound":18,highly:[123,29,12],"_table":[],"\u6587\u5b57\u7a2e":181,negative:[41,54],"\u304a\u5f85\u3061":26,kytea:[7,91,126,192],separated:107,"\u304b\u304b\u308b":[115,114,3,104,62],"\u9df2\u7530\u57fa":126,aware:41,"_register":[],"\u3064\u3065\u3044":188,"\u62bc\u3057":3,word:[7,109,185,152],work:150,"\u62bc\u3059":[3,120],"\u30a2\u30fc\u30ab\u30a4\u30d6":[102,153,120],"\u5316\u6642":28,"\u3069\u306e":[93,109,91,152,131,171,18,76,192],indicates:150,"-conditional":28,"\u5bfe\u51e6":81,"\u30b9\u30ad\u30e3\u30f3":[163,48],"\u540d\u524d":[],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":153,"\u30bb\u30b0\u30e1\u30f3\u30c8":[127,38,81,80],recovers:84,"\"apple":193,"if":[41,5,129,98,9,150,107,54,111,12,86,16,114,19,65,70,122,123,78,80,152,84,132,36,190,137],"-lines":[132,28],"\u306e\u3046\u3061":[96,185],"/security":140,"_plugins":[],"\u306b\u5bfe\u3057\u7570":116,after:[132,111,20],"|with":[3,92,12,96,48,109,152,86,115,71,165,123,163,74,186,116,79,81,181,185,188,134,33,140],"\u76f4\u4e0b":28,lat:170,"_title":[170,79,3,159],".description":188,"*func":[54,16],"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf":156,"@naoina":[7,126],"\u30d9\u30fc\u30b7\u30c3\u30af":55,"\u306e\u3069\u3061\u3089\u304b":[109,97,185,152],"\u30dc\u30c3\u30af\u30b9":109,"\u5bfe\u8c61id":42,choose:98,"\u300c\u30e9\u30d9\u30eb":109,japan:[173,103,131],"\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":178,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf":81,"\"say":152,"/windows":[102,153],"\u4e0b\u9650":[64,121],then:[41,132,9],them:[39,12],"\u8f9e\u691c":[28,152,95],"_token":81,they:[123,150,12],"\u5168\u3066":[109,152,46,115,114,9,160,79,120],"\u697d\u3057":[71,145],"\u56de\u6570":[7,140],"\u3042\u304d\u3089":81,"-send":[132,65],"\u5168\u304f":78,"\u7a81\u7136":126,"\u5316\u65b9":[193,134],carlos:[60,128],serach:18,"/null":1,"_options":[126,152],logs:[143,166,123,150,23,132,63,106,181,65,66],"<endpoint":65,patsuffix:144,"\u30ea\u30af\u30e9\u30c3\u30b7\u30e5":7,"+ y":46,"+c":98,"+a":185,network:175,"_directory":[2,175],".deb":153,"\u3068\u3059\u3079\u3066":[7,109],wgs:[45,76,131,13,188,46,35,75,111,103,28,171],"\u6210\u308a":[109,185,175],"\u90e8\u5206":[70,185,71,188,145,136,180,78,192,81,152],"\u77ed\u3044":[78,156,188],"+ \"":[7,78],"_tp":182,"\u77ed\u304f":[115,133],standard:46,"_to":[188,79,124],"_tf":[],"\u30eb\u30fc\u30eb":[156,109,91,81,55],"\u30eb\u30fc\u30d7":[7,156,81],created:[41,132,188],"++":[167,130,153,129,113,133,98,16,78,28,192,39,81],"+-":[39,9],creates:[41,150,39,190],"\"ni":179,"\"no":7,"\u6709\u7121":[13,163],"_failure":5,"\u30eb\u30fc\u30c8":28,"\u59a5\u5f53":95,"\u305d\u306e\u3088\u3046":173,"><":[39,4],">=":[126,152],">>":[126,152],"_next":[64,111,156,121,126],">.":[163,48],">\"":[109,110,163,126],"\u30bf\u30fc\u30b2\u30c3\u30c8\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":17,"\u3082\u3089\u3048\u308b":125,"\u30b5\u30dd\u30fc\u30c8":[93,1,91,4,95,46,142,7,9,104,78,146,52,192,55,11,152,153,13,113,14,115,116,64,181,66,69,170,125,126,28,79,178,81,82,185,131,133,156,33,191,193,85,103],"\u540c\u4e00":[11,122,145,170,126,74,61,64,79,55],"\u898b\u306a\u3057":64,john:[173,144],"\u30b9\u30ab\u30e9\u30fc":86,"\u63a2\u7d22":133,tokenfilterstem:[],">n":4,"\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9":[114,80,84,122],"\u3069\u3061\u3089\u304b":[152,33,48,185],"\"unknown":124,keyid:153,target:[],bi:[71,145],"\u3002value":[80,61],"\u57fa\u76e4":16,":byte":183,"\u30d6\u30fc\u30eb":[13,46],contents:41,latency:170,dbms:33,"\u5f8c\u8005":[75,193,178],",\\\"":59,"\u8ff0\u3079":3,"\u5177\u5408":[109,152],indexbuf:122,"_distance":[],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":[132,126,120],"\u30c4\u30fc\u30eb":[],"\u5408\u308f\u305b":[7,122,153,152],gronnga:172,"\u3002host":175,"-strings":113,"\ufff0\"":85,"\u767a\u751f":[74,1,192,153,71,133,136,126,16,7,114,78,80,81,66],"\u8003\u3048":[109,3,185,131,133,125,140,55,152],"\u5270\u4f59":[],"(target":[149,101],keywords:[123,39,12],"\u65e2\u5b9a":7,"_input":[136,2,152],implementation:129,"\u30d1\u30bf\u30fc\u30f3\u30de\u30c3\u30c1":181,version:[43,3,4,153,175,170,16,83,117,103,28,9],rectangle:[],"-frequency":28,iptables:55,"do":[137,170,81],"\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":156,dh:153,"\u3082\u3057x":126,"\u3055\u3089\u306b":[45,11,3,86,133,172,95,78,81],de:120,"\u53d6\u308a\u5f97\u308b":46,"\u8ab0\u304b":89,"[libedit":28,"\u8ab0\u304c":188,runs:[98,65],"\u3042\u308c\u3053\u308c":125,"\u8ab0\u3067":81,"\u5341\u4e00":145,"\u4e0b\u90e8":153,"_compress":122,depends:[123,29,43,12],"\u30d1\u30b9\u30b9\u30bf\u30a4\u30eb":181,"\u7d9a\u3051\u308b":85,"\u67d4\u8edf":[133,160,116],"\u5bfe\u8c61obj":42,"\u91cf\u6307":181,"\u3067\u3057\u304b":85,"\u9650\u6587":[28,66],"\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":70,wc:[154,130,14,167],wo:85,"\u3044\u305a\u308c":[46,11,61],"\uff12\u3064":75,packages:[120,130,153,167,24,14,142,154,102,192,90],received:98,"_tables":[78,126,16],"\u69cb\u3044":[179,33,48,120],ill:145,"\u3082\u3046\u307e\u304f":192,"\u4e00\u4ef6":64,"\u6319\u304c\u3063":85,"\u4e09\u7a2e":[191,103],requests:[132,36,150],com:[135,131],col:80,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":[],"\u6709\u76ca":133,calros:97,"\u30d1\u30fc\u30b5\u30fc":[185,153,181],"\u95b2\u89a7":103,")\u300d":98,snippet3:33,")\u3001":81,enginen:179,"_accepted":104,"'needle":70,"\u3082\u3057\u3053\u306e":168,"\u65b0\u305f":[94,114,70,84,122],applied:43,"-secret":153,"\u4fee\u5e73":81,gnu:[],"\u9650\u5b9a":181,zlib:[74,156,122,14,126,7,154,175,28,192,81],"_message":[136,79,181],"_only":[2,175],"\u7e4b\u3052":81,aio:126,"\u5165\u529b":[1,147,3,6,98,49,106,108,109,152,155,59,18,157,159,194,161,170,73,126,74,127,175,28,113,179,182,83,172,136,38],"\"http":86,"[solaris":7,cond:126,conf:168,"\u56fa\u5b9a\u9577":156,"\u30ed\u30b0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":81,"\u9069\u3057":[115,133,66],"-dataset":[],"\u4e0d\u5177\u5408":[7,78,89,126,81],"\u6771\u4eac":[71,75,76,85,145],"-packages":153,"[warning":181,hana:45,"\u76ee\u7684":[192,91,23,126],"\u72b6\u614b":[167,83,130,156,3,153,127,71,133,14,98,16,7,154,182,125,78,179,81],"\u308f\u304b\u308c":109,the:[41,142,43,12,129,98,49,7,9,104,150,107,54,109,76,152,88,16,114,19,20,65,122,123,111,80,185,84,132,36,33,190,137,188,140,39],"_shutdowned":[2,175],"\u30de\u30c3\u30d4\u30f3\u30b0":168,"\u826f\u4e8c":81,solaris:[],"_score":[109,122,12,188,126,7,155,75,61,78,28,152],"\u8db3\u3057":152,repoforge:[7,130],thanks:188,"\u3068\u306a\u3063":126,adding:[36,20],"=sjis":192,"\uffef\"":85,"~ \"":[152,181],"\u7027\u5185":126,"\u7528\u3044\u308b":[45,3,13,133,100,75,175,80],"\u6307\u6a19":80,jekyll:153,arai:78,"\u30ed\u30c3\u30af":[1,98,126,7,137,19,28,80,108],"\u307e\u3068\u3081\u308b":9,"\"\\\\":181,"_expr":[],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3":[192,136,11,170,195],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":[],"\u307e\u3068\u3081\u3066":[13,133,153,131],"-token":[154,14,81],"\u3057\u304d\u308c":7,tokenbigramsplitsymbolalphadigit:[],comments:[],"_arg":2,tasuku:43,"\u5358\u7d14":[70,144,171],".sourceforge":[153,26],"(select":152,"_compile":39,"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":[],"\u8db3\u308a":[28,178],"\u30b5\u30fc\u30d3\u30b9":[133,126,7,140,81,82],substitution:116,"\u69cb\u6587":[],post:[],properties:150,obj:[42,80,84,94,127,57,39,54,119,122],"*ic":121,accepts:[132,128,98],"*ii":87,"\u6709\u7528":[3,95,96,55,136,9,78,81],"\"text":28,"\u5224\u5b9a":75,zxvf:153,"\u3068\u306a\u308a":[185,55,33,48,103],".h":[88,41,78],"\u4e2d\u9593":[70,145],"float":[109,76,4,13,46,7],"\uff09\u3001":[95,145,153],"\u6700\u521d":[142,3,48,104,28,109,152,13,16,66,163,125,97,78,79,178,81,181,185,132,33,136,85],"\u30a2\u30b8\u30e3\u30b9\u30bf\u30fc":[109,86],"\u6e80\u3059":[78,126],"_socket":[2,175],"\u5927\u6587":[109,181],"\u5b89\u5168":[78,175],way:65,cdbs:28,"cpu\u30b3\u30a2":[],"_body":[71,74,92],"\u6027\u80fd":[],"\u6c7a\u307e\u308a":178,encoded:132,"true":[1,147,3,92,12,6,46,165,48,137,47,146,101,104,10,149,110,128,108,115,109,76,152,86,13,194,59,116,60,157,63,144,96,66,22,45,69,50,23,123,163,73,126,171,74,186,75,173,97,79,177,81,181,185,131,188,33,35,8,193],maximum:[36,12],"\u30e1\u30c3\u30bb\u30fc\u30b8":[78,11,81,188],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":[],mte:43,"\u6587\u5b57":[],"\u7d44\u307f\u8fbc\u3080":[133,70,9],syscall:81,"\u30ed\u30c3\u30af\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[19,126],score1:70,score2:70,distributions:153,"\u3054\u89a7\u304f":[3,180],physical:127,"\u9577\u3059\u304e\u308b":126,test:[3,153,13,188,170,103,79,180],"\u5c5e\u6027":[91,134,148,74,110,27,169,106],"\u305f\u3081\u3057":75,truncate:[],welcome:[188,109,185,152],update:[],"\u547d\u4ee4":[],"[gqtp":126,"\u964d\u9806":[64,155,109,3,114],scorer:[],tajima:7,"\u7de9\u3084\u304b":78,masaharu:[7,113],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af":28,"/debian":[154,153],"\u30ea\u30af\u30a8\u30b9\u30c8gqtp":175,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":[],"<threshold":98,"\u901a\u77e5":[153,104],"\u306e\u304f\u3089\u3044":140,"(ptr":156,"_denied":[2,175],"\u8a2d\u6a02":28,"\u5f53\u3066\u308b":[13,104],entries:[109,185,163,48,140,152],"/http":[142,9],"\u72b6\u6cc1":[71,133,109,152,94],"\u3068\u3057\u3066":[],"{column":181,"\u4e0d\u6574\u5408":1,"\u5c11\u304f":168,"(database":168,"4gbyte":67,"=c":102,initializes:[41,5],yoku:[126,81],"\u3002cursor":64,"[munin":[7,28,126,81],"\u30c8\u30e2":45,shared:[19,122,84],nakamura:78,supporting:9,"dat\u30ad\u30fc":126,"[deb":[7,28,126,81,78],"\u6e2c\u4f4d":133,"\u30b5\u30d6\u30bf\u30b9\u30af":153,"\u96c6\u5408":[72,86,7,114,160,181],"-rotate":[78,98],appears:33,change:[7,9,55,20],"\u30ec\u30dd\u30fc\u30c8":192,liblzo:[154,14],"\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2":[71,109,160],"\u305d\u306e\u969b":153,usually:65,".spec":28,".exe":102,"\u305d\u306e\u307e\u307e":153,"\u6700\u5c0f":[167,109,14,130,154,97,142],marked:142,"-cutter":153,"'haystack":70,"\u7d71\u5408":[7,133,126],httpd:[7,113,126,81,153],"\u6307\u6570":152,https:[],selects:111,"/copyright":81,"enter\u30ad\u30fc":126,"\u6d41\u91cf":55,"_sum":109,"_plugin":[41,28,148,81,78],cas:175,"\u884c\u308f":[182,45,109,170],nfkc:193,cat:153,can:[41,120,107,84,12,129,123,36,10,98,33,16,19,20,150,128,49,9],clearlock:[],",\"http":13,"_stable":117,"_stamp":150,"-sphinx":[153,20],"\u884c\u3063":[180,75,131,81,153],"\u30af\u30a8\u30ea\u30a8\u30f3\u30b8\u30f3":[],"-autoreconf":153,"\u5b89\u5fc3":125,"\u884c\u3046":[182,45,165,76,144,153,188,145,125,142,7,116,75,156,180,64,79,81,66],",'":[13,46],"\u884c\u3044":[182,45,70,3,153,71,188,145,98,116,114,64,78,79,80,170],",\"":[45,4,188,127,159,78,79,81],",.":153,mpaa:97,"_logical":78,"\u884c\u3048":[180,116,3,185,81],write:[109,143,98,137,20,77,113],"^commit":153,"\u8fd1\u508d":[],"??":109,"\u30e1\u30c3\u30bb\u30fc\u30b8\u30dc\u30c7\u30a3":126,"\u5316\u6e08":[80,84],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":165,uint:[156,3,92,46,7,103,106,128,144,109,152,112,115,60,96,66,45,165,71,126,186,75,173,97,79,81,181,185,131,86,136,140,193],"?'":[],",_":[45,109,3,152,131,86,188,116,75,155],"\u5207\u308b":[9,81],",[":71,"\u5207\u3089":81,"\u5178\u578b":78,"\u8fd4\u3059\u304b":155,ghz:170,"\u5404\u56fd":153,"\u30b2\u30c3\u30c8":26,meerkat:28,",{":[170,98,4],"\u304b\u308f\u308a":[71,78,81,167],"\u5357\u534a":7,"\u82f1\u8a9e":[0,153,28,85,81,120],db1:55,"\u5bfe\u8c61ctx":16,ieee:46,"_account":120,":ss":[150,152],"_tsv":[107,178],"\u30bd\u30d5\u30c8":178,"-libedit":156,"/html":[28,120,55,20],"_rotate":78,"\u3002gdb":180,"\u78ba\u5b9a":155,"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30e2\u30c7\u30eb":81,"\u30de\u30c3\u30c1\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":192,"\u4f5c\u7528":7,"\u542b\u3081\u308b":[109,91,23,185,153,159,166,113,143,134,28,63,3,178,81],rake:153,"\"version":4,"\"ruby":86,"\"vector":126,alisa:116,now:[],"\u3086\u304d":144,"\u30c7\u30a3\u30b9\u30af\u30d5\u30eb":78,"_lcp":114,january:132,"[normalizer":81,"\uff4d\uff59\uff53\uff51\uff4c":[163,48],"\u8aad\u307f\u8fbc\u3081\u308b":159,el:[130,85],domain:[],en:[155,91,85,179],ea:[150,91],ec:109,kana:[155,18,179,190,49],ex:91,year:150,"\u70b9\u6570":[],es:85,"\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf":153,opened:150,space:[41,78,181,185,86],"\u518d\u69cb":28,"\u3065\u3051":[],"/files":[153,20],shows:107,"\u5230\u9054":67,"\u5d8b\u7530":7,"-rroonga":17,care:123,"/pub":130,"\u7d50\u5408\u5f0f":[],couldn:[],arnaud:28,"[windows":[7,28,126,81,78],british:92,"\u6e1b\u7b97":[],"_block":[2,175],omitted:[137,4],variables:41,"\u305f\u3069\u308b":45,"\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0":97,compared:33,message:[41,23,123,8,150,79,181],xt:[91,85],size:[],"\u4e0b\u3055\u3044":[167,130,91,153,96,14,126,7,154,114,191,102,138],checked:153,silent:82,"\uff08=":109,bookmark:[159,86],"_obj":[],"\uff08.":153,"\uff08,":3,"\uff08-":[109,3],".git":[105,153,120],"\u30bd\u30b1\u30c3\u30c8":[74,147,6,73,7,127,8,157,159,161,194,106,38,83,141,108],"\u3044\u308c":[7,13,80,85,78],"\u3044\u308b":[],that:[41,109,111,122,12,129,123,98,33,137,7,132,114,9,150,107,39,54,19],kenichi:[28,156],"\u6a29\u8868":81,"=path":[],libevent:[192,154,14],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":118,"\uff08@":[28,156],x6:153,than:[12,86,123,129,49,150,29,181],"\u30d5\u30a9\u30fc\u30e0":[109,160,126,185],"*next":54,"\"\u4e8c":179,"[index":81,"/gat":[75,3,131],accesses:122,"_basic":[9,55],"\u5404\u547d":170,browser:120,"\u3044\u304f":[],"(scope":186,"\u3044\u304d":[125,3,153],remained:[150,181],"\u3059\u308b\u304b":131,"\u3044\u3044":[125,26],"-zlib":[],"\u30b3\u30f3\u30d1\u30a4\u30eb":[113,126],"\u30b3\u30f3\u30d1\u30a4\u30e9":[28,81],"_circle":[],engin:[155,179],"\u591a\u5f69":133,"=none":[109,91,134,47],"\u3044\u3064":179,"\u3044\u3063":181,"*buffer":80,"\u3044\u307e":69,"\u9806\u6b21":[182,98,3,175],begin:182,price:13,"\u5c0e\u5165":[78,11,180,81],"_section":[122,188,96,74,79,81],"\u79fb\u52d5":[153,88,7,102,194,28],"\u672a\u4f7f\u7528":175,"\u3068\u308a\u3068\u3093":[185,152],"-yyy":120,":\u79d2":188,"\u305f\u3069\u3063":188,"\u3057\u3044":[71,145],"\u3057\u304f":126,"\u975e\u4e92":[7,78,126,81],"\u65b0\u5bbf\u99c5":75,"\u3057\u304b":[109,185,13,55,9,181,152,79,120,85,81,66],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":[],oldvalue:122,"\u3057\u3066":[45,109,156,3,153,131,71,14,125,126,7,114,9,180,120],"\u6700\u5927":[],"\u30bf\u30a4\u30c8\u30eb":[45,109,152,13,79,185],title:[45,3,131,12,137,13,126,123,186,103,159,153,79,29,81],only:[41,12,123,98,9,78,29,107],"\u3057\u307e":125,"-server":[],"\u30b9\u30ed\u30fc\u30af\u30a8\u30ea\u30fc":9,cannot:[],"\u5f8c\u8ff0":[64,186,70,153,181],"1\u6708":[13,188,46,109,152],"\u8a73\u7d30":[142,91,3,46,7,9,10,57,167,109,192,152,86,14,17,116,180,62,25,96,66,22,47,71,170,126,75,140,78,177,81,181,130,185,131,136,154,191,37,120],"\u7528\u5909":81,".label":109,"/gqtp":[142,126],"\u62c5\u5f53\u8005":153,"\u8b70\u8ad6":0,elfring:7,"\u840e\u7e2e":125,"\u300cbob":188,"({":132,"\u3070\u304b\u308a":78,"(scan":180,"\u8a18\u6cd5":[79,152],"\u70b9\u4ee5\u4e0b":13,"\u30d0\u30c3\u30d5\u30a1\u30ea\u30f3\u30b0":126,"_mode":81,"\u5dee\u96c6\u5408":152,between:[],"[dd":181,"import":153,"\u5426\u304b":[143,97,23,166,63],"\u5e38\u306b":78,notice:[6,123,8,98,9],"{label":109,unlocks:41,"\u3057\u308c":[27,185,136,60,104,169,181,81,152],"\u3057\u308a":125,tokenbigrma:91,"\u3057\u3088":[42,70,13,115,126,16,59,76,19,28],"\u672a\u8a2d":7,article:79,"\u6a5f\u68b0":81,embedding:98,"\u3079\u30fc\u30b9":81,"\u8d77\u3053\u3063":60,"\u975e\u4f9d":130,"-groonga":[105,188,170,153],"-time":33,"\u5c55\u958b\u5f8c":109,learning:[],"\u30ad\u30e3\u30f3\u30bb\u30eb":104,"\u8868\u8a18":[76,92,153,86,13,46,126,7,75,28,152,120],configuration:[9,126],"\u578b\u60c5":7,cares:123,"\u3002callback":70,"<encoding":98,"'>":110,"';":98,"=yes":[109,50,153,126,78,113,180],ruby:[],"\u5438\u53ce":3,developing:165,these:[98,33,12],"\u4e0d\u5b8c\u5168":28,"\u975eascii":85,"\u30b7\u30b0\u30ca\u30eb":[28,81],geodetic:46,"\u5f8c\u65b9\u4e00\u81f4":[],"\u4f7f\u7528\u4f8b":76,"/packages":153,shorttext:[3,92,12,95,46,98,47,48,49,101,103,149,106,111,128,144,123,109,76,152,86,13,155,115,116,60,18,159,64,96,66,45,165,71,163,170,74,186,75,173,97,28,79,110,179,81,181,185,131,188,156,33,136,137,140,193],"[grntest":28,"\u3002\u300c":[45,109,91,185,134,47,152,79,181,85,81,66],"\u3002\u300d":71,"\u5fc5\u8981":[],canceled:104,", {":[9,55],"\u5c65\u6b74":153,"\u3067\u3053\u306e":140,"\u8f9e\u66f8":[167,1,71,156,126,7,78,85,81],develop:[165,11],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30ce\u30fc\u30c9":78,"-dir":170,"\u6fc1\u70b9":193,document:[152,12,123,163,156,98,33,48,153],"\u3002\u3044":70,favorited:188,"\u5b89\u5b9a":[133,11,113,127],"_space":[2,175],initialization:132,".po\u30d5\u30a1\u30a4\u30eb":[],", \"":[79,163,86],favorites:188,"\u3042\u306a\u305f":[78,153,26,181],eito:126,"\u3002\u3059":[115,170],theater:92,"\u8d77\u3053\u308a":92,"\u5171\u901a\u63a5":95,"\u3059\u3079\u3066":[91,3,96,47,7,9,28,192,109,11,152,86,60,114,165,170,97,78,81,181,131,156,140,85],"[output":113,"\u3002ecmascript":109,"\u6bd4\u3079":[115,81],excel:178,"\u30ab\u30e9\u30e0":[],speed:172,"\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af":83,"\u3002api":[163,33,48,160],"\u4f4e\u304f":[71,85],mmap:[],"_extract":43,"\u4f4e\u3044":[71,109],desktop:102,"\u30c7\u30fc\u30bf\u30ab\u30e9\u30e0":62,"\u30ad\u30fc":[143,95,46,98,7,104,3,54,109,152,86,114,61,63,66,67,23,122,166,126,173,78,113,81,185,156,193,85],"\u3002apt":153,real:33,"\u542b\u3081":[109,178,185,153,97],"\u542b\u3080":[182,74,109,70,23,185,86,188,135,145,126,7,155,78,3,79,81,152],"\u8a00\u3046":[179,86],"\u8a00\u3044":[186,72],"\u9234\u6728":7,read:[33,175],swig:43,"\u5c55\u958b\u7528":28,amd:153,"\u542b\u3093":[109,70,185,13,188,33,136,172,18,85,81,152],"_hook":[],using:[107,79,43,49],cd:[120,130,153,167,24,14,154,102,192,90],"=site":103,output:[],"\u5c5e\u3059\u308b":[64,106,80,122],unsplit:70,"\u30c4\u30ea\u30fc":81,"\u30b7\u30b9\u30c6\u30e0":[],"\u5de6\u53f3":3,"id\u9806":64,"\u30ec\u30b9\u30dd\u30f3\u30b9":[17,2,126,7,55,28,81,175],moero:45,"\u30d0\u30a4\u30f3\u30c9":78,unlocked:41,"\u30de\u30b7\u30f3":98,forks:98,"\u542b\u307f":[64,78,136],"\u542b\u307e":[3,96,145,49,7,101,10,146,106,55,109,152,153,59,116,66,22,69,70,23,97,78,177,178,81,130,185,188,33,136,85],"\u30ed\u30ac\u30fc":78,"\u5206\u3051":[],tomoatsu:156,".posted":188,"-static":28,rdbms:[133,98],"\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":170,"\u578b\u6307":7,"\u306f\u305d\u306e":16,backup:[84,159],processor:[154,130,14,167],"/admin":[28,98],"\u30ea\u30af\u30a8\u30b9\u30c8id":[],"\u30aa\u30d5\u30bb\u30c3\u30c8":[7,78,109,155],"_per":[28,16],"\u53f3\u4e0a":1,"=title":103,operator:111,your:[98,137,20,28,82,120],"_example":179,log:[],prepare:9,removing:84,rpmforge:130,rlimit:[150,126],"\u77e5\u8b58":170,cflags:24,"\u306b\u3064\u3076\u3084\u3051":125,"d\u30ad\u30fc":3,"/query":[22,177,10],",\"links":13,"~${":181,embedded:[],"default":[],"\u30b3\u30b9\u30c8":[115,114],"[benchmark":81,"\u30ef\u30fc\u30ab\u30fc\u30b9\u30ec\u30c3\u30c9":126,"\u30d5\u30a1\u30a4\u30eb":[],describe:41,"&request":104,"\u5bfe\u5fdc":[],"\u95a2\u4fc2":[],storage:[163,48],"\u691c\u67fb":80,"_code":[41,136,150],vmstat:168,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":[103,55],you:[41,107,84,12,129,123,36,98,190,16,137,132,128,9,122,20,29,49,39,65,120],string2:112,string1:112,massachusetts:188,coverage:180,"[fedora":[7,81],"<ip":[170,98],"\u4e94\u5165":28,building:107,"\u306a\u306b\u5bfe\u3057":[185,152],"#remove":78,"\u5b9a\u7fa9":[147,3,12,94,46,98,48,7,101,149,106,54,109,76,152,115,116,114,61,159,157,70,23,122,123,183,163,73,74,186,173,175,97,78,79,178,81,181,185,33,110],"\u8a66\u3057":125,"\u8a66\u3059":[85,195],"\u3068\u3064\u3044":75,cores:132,"\u518d\u5e30":[109,70,147,9,80,178,108],"\u5343\u4e07":67,month:[45,150],"\u308f\u304b\u3061":145,"\u3002name":[114,122,16],"4byte":175,"-_":[123,109,12],"\u57fa\u6570":152,longitudexlatitude:126,"-e":98,"-d":[132,175,98,9,52,65,103],"-g":102,"\u4e16\u4ee3":11,"-a":[7,98,185],"_rk":64,"-c":[167,130,98,175],"-m":182,"-l":[132,150,98,65],"-n":[132,28,3,98],"-i":[78,98,170],"-h":[98,9,55],"-j":192,"-t":[132,98],"_bulk":[39,16],"-p":[182,132,98,170,103,175],"-s":[132,98,65,175],"-r":[132,65],"-x":[126,153],"-z":132,"\u73fe\u983b":81,"\u524a\u6e1b":78,very:[136,109,185,12,163,33,48,59,152],"\u4ed5\u7d44\u307f":[7,9],"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9":[28,55],"\u76f4\u5f8c":16,":\"":[39,3,181],"_github":120,"\u6b8a\u547d":170,normalizers:27,"\u9df2\u7530":126,":=":[109,185],"--":[41,42,1,91,92,12,94,98,47,48,49,7,101,102,9,149,121,57,54,123,109,110,152,153,86,114,16,17,116,117,19,25,163,119,45,165,23,122,71,183,124,170,126,64,75,111,28,80,178,81,181,84,131,188,156,33,148,39],"-(":[152,153],"-+":9,"\u3057\u307e\u3057\u3087":[85,23,92,86],"->":[78,156],"/work":153,"/alice":85,"\u518d\u73fe":[71,125,85,126,160],"-search":[85,81],"\u975e\u5206":109,"\u53ef\u8aad":81,"@s":156,naoina:[7,126],"-jinja":153,"\u6e2c\u5730":[76,13,46,35,75,171],learned:65,"@~":181,except:140,"\"yyyy":152,"\u9ad8\u3044":[109,3,133,127,9,155,85],"/ja":[17,153,120],"\u304b\u304b\u3063":[136,109],"\u306b\u95a2\u3059\u308b":[],"\u30aa\u30b9\u30b9\u30e1":[167,130,14,154,102,138,85,181],"@'":3,"_dist":7,"\u30ec\u30b3\u30fc\u30c9r":70,daemonize:132,"\u308f\u304b\u308b":81,"\u308f\u304b\u308a":[109,131,156,78,85,81],"\u30b0\u30ed\u30fc\u30d0\u30eb":[7,19],"\u3068\u305d\u306e":11,"\u8ad6\u7406":[],hoge:112,"\u30de\u30c3\u30c1":[],"9\u3064":3,"\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3":7,normallexicon:193,chunks:168,"\u30de\u30c3\u30d7":[78,140],takes:104,contains:[123,12],rect:76,"\u6c7a\u307e\u308b":3,"_xxx":109,"\u5c0f\u3055":78,"@yito":[7,126],fulltext:[163,91,98,33,48],".comment":[188,79],"-tokenizer":[167,130,14,126,7,154],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":[],"\u30af\u30ea\u30c3\u30af":109,"\u65e5\u6b21":78,"\u5fa9\u53f7":153,vm:[],"\u3002eclipse":120,"[load":[7,81],"/homebrew":153,"-databases":[3,132,96,60,103,106,175],nine:3,pushes:16,"\u9664\u53bb":[47,156,165,110,126],exclude:[143,166,97,126,7,63,23,81],"0mq":126,"\u8fd4\u5024":[],"_batch":81,"-address":[7,28,98,78],snippet:[],"\u3042\u3089\u304b\u3058\u3081":[167,46,153],"[table":126,"_likes":[136,140,109,185,152],tried:188,"\u51fa\u73fe":[122,133,96,100,155,78],"[dat":[7,113],derived:65,"\u7686\u5ddd":81,"\u901f\u304f":[45,192,66],fa:91,tries:19,"\u3002'":80,fd:132,"\u6642\u9593":[],unlink:39,"_avg":109,"\u56fd\u3054":131,documentation:[82,20],"\u30b9\u30c8\u30ea\u30fc\u30e0":81,"\u4e00\u5bfe":13,narwhal:28,uninstall:7,"\u5909\u63db":[2,152,95,46,9,78,64,28,193,188],help:[28,180,120],"\u592b\u5fc5":144,"-wno":28,"\u5dee\u3057":153,"/lzo":[28,156,126],systemd:[7,78],"\u306f\u3044\u304f\u3064\u304b":[67,136,19,55,185],"_rename":[],"\u30ab\u30fc\u30bd\u30eb":[64,28,156,121],shimada:156,systems:33,"\u30ad\u30fc\u30dc\u30fc\u30c9":109,"\u57fa\u672c":[],"\u76f8\u5bfe\u30d1\u30b9":81,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":[98,39,126,185],"\u30c1\u30fc\u30e0":153,"-test":[180,153],"\u5f62\u72b6":93,"\u3002:":[3,12,145,98,49,50,9,104,78,106,55,109,11,152,153,155,170,59,18,157,62,169,120,27,159,71,168,125,74,127,140,28,179,180,172,37,66],"\u597d\u304d":120,resizes:41,yito:[7,126],heavy:129,"/plain":78,"\u306a\u306a\u3069":[185,152],"\u9032\u3093":133,"\u30b5\u30a4\u30ba":[42,95,98,7,102,78,149,167,13,14,114,64,66,67,122,168,126,127,175,28,80,81,130,133,33,154,138,140],"\u982d\u6587":175,"=grooon":132,"\"sequence":[155,18,179,49],"\u9032\u3081":[],todo:[],event:[155,190,65,18,49,179],"_position":[3,92,12,96,48,109,152,116,115,71,165,122,123,163,74,186,79,181,185,188,33,140],"\u52a0\u3048\u308b":[74,28],gemfile:7,trusty:[14,153,81],since:[150,128,142,10],"\u300cgrand":188,issue:0,"/mailarchive":153,"\u9045\u304f":[181,171,185,131,152],"\u9ad8\u304f":[71,78,86],"\u7acb\u3064\u304b":85,"\u9045\u3044":[95,76],"\u3002mysql":[154,130,14,167],pub:153,"\u3042\u308f\u305b\u308b":7,base:[41,9,153],put:[123,185],bash:192,"\u5931\u52b9":[9,118],"\u30b5\u30a4\u30c8":[13,45,109,153,160],"\u5024\u3068":[13,109,185],encoding:[41,124,98,4],"/data":82,"\u30b9\u30b3\u30fc\u30d7":181,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea":[142,191],"\u65e5\u3054\u3068":23,"\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8":[7,126,181],"\u30d0\u30a4\u30c8\u30b5\u30a4\u30ba":39,php:[7,129],"\u5024\u304b":76,":value":[109,185],"\u53d7\u3051\u308b":[142,81],zeromq:192,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":17,schema:190,"\u3002make":170,"\u3002null":[114,84,16],recursively:137,"\u30de\u30eb\u30c1\u30d0\u30a4\u30c8":28,translation:120,"\u5024\u3054":131,jquery:[156,81],grep:[154,130,14,167],"\u3002xml":136,utopic:[14,153],recovered:84,str:[41,39],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":153,"\u5206\u3051\u308b":[13,153],"\u547c\u51fa":[42,114,80,122],"\u30de\u30eb\u30c1\u30b9\u30ec\u30c3\u30c9":[104,81,55],"null":[],"\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":4,lib:[22,156,177,126,10],"_incr":80,"\u79d2\u5358":[13,46],"\u5024\u3068\u3057\u3066":[188,76,98,168],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30b5\u30a4\u30ba":9,quote:152,tokenbigramsplitsymbol:[],".repoforge":130,"'hay":70,"/dev":153,clear:[137,80,81],"\uff08and":160,"\u6697\u53f7":153,"\u4ecb\u3057":[133,103],geosite:45,clean:180,"\u6574\u5408":[1,80],"\u4e8c\u70b9\u9593":76,"\u62e1\u5f35\u578b":13,"\u59cb\u3081":120,parameters:[132,137,12],"\u5225\u3005":[109,131],"<level":65,"\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9":180,"\u4eca\u5f8c":[146,28,91,194,181],httprewritemodule:9,".nginx":9,"*index":[111,121],"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":[98,126,81],boost:179,"\u52a0\u7b97":[],"\u68ee\u7530":45,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":4,"\u82b1\u5b50":45,"\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":38,"(argument":152,locale:120,"_enough":[2,175],":groonga":[109,14,185,153],"_would":[2,175],"\u5f93\u6765":81,"\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0":70,"_probability":[28,155],"\u7d39\u4ecb":[188,89,109,81,153],"_lt":64,"\u5909\u6570":[41,109,152,153,24,113,126,148,7,180,28,78,178,54,81],"-level":[98,65,81],"\u307e\u308a":[78,109],"|persistent":[106,60,96],"\u306f\u3061\u3087\u3046":152,"\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":[164,160,82],"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2":17,delimit:126,oneiric:[28,126],geopoint:[],"\u5f71\u97ff":[7,78,126,81,153],"\u767a\u63ee":133,jeff:144,"\u306f\u307b\u3068\u3093\u3069":109,"\u4e00\u5f0f":80,header:[],"-plugins":[],"\u4e0d\u80fd":170,tokenbigramignoreblanksplitsymbol:[],"\u518d\u767a":81,described:98,"\u6b62\u3081":81,"\u306e\u3069\u308c":[132,179],"\u4e8b\u67c4":125,stamp:150,describes:[136,98,20],empty:78,"\u30e1\u30bf\u30d1\u30c3\u30b1\u30fc\u30b8":7,"else":78,"/db":[142,62,155,9,159,65,181],"/dd":152,"\u56de\u7279":170,"\u7a3c\u52d5":83,"\u6a29\u9650":[78,192,103,126],"\u30a8\u30b9\u30b1\u30fc\u30d7":[],"\u6307\u793a":[94,3,103,179],"while":137,"\u505c\u6b62":[11,98,126,60,78,141],"_zlib":[74,2,122],malloc:81,"!(n":152,reads:65,ready:20,"\u898b\u3064\u3051":[1,125,109,7,85,179],fedora:[],checking:[132,84],"_keys":[109,114],"geopoint\u9593":28,"-jp":[85,126],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":[192,153],composition:193,used:[84,12,129,132,36,98,16,137,118,188,150,5,107,128,65],temporary:[98,84],uses:[84,12,123,150,29,107,65],user:[45,152,186,132,36,170,33,48,116,9,97,140,54],"\u30ab\u30b9\u30bf\u30de\u30a4\u30ba":[165,91,185,131,134,47,109,98,33,126,7,193,159,140,78,157,192,179,81,66],database:[],"-filter":[109,144,86,188,14,33,48,7,154,116,186,78,28,181,162,81,152],"\u30ef\u30a4\u30c9":28,"\u30b1\u30fc\u30b9":[109,84,131,71,185,75,17,60,9,181,78,152,85,81,66],clears:122,"\u9806\u756a":[121,185,71,98,64,3],"\u30b0\u30e9\u30d5":133,"_path":[],"\u30d0\u30a4\u30b0\u30e9\u30e0":[71,85],"\u5f0f\u8868":39,"\u8fd1\u4f3c":[7,28,76,171],"\u56de\u6307\u5b9a":185,"\u3002bash":78,"\"tritonn":109,"\u307e\u3057":[7,9,28,109,76,152,153,66,18,120,45,71,125,126,78,81,181,185,131,188,193,85],"(msghdr":78,"\"uptime":4,"-gram":[91,3,152,71,133,145],"\u30c6\u30ad\u30b9\u30c8\u30ab\u30e9\u30e0":78,"\u3064\u3051\u308b":[109,125,144,81,86],"...":[42,4,5,94,87,98,7,9,104,106,57,54,115,109,111,152,155,114,16,17,117,19,186,25,181,163,119,121,122,183,124,170,126,64,28,80,81,185,84,127,132,188,58,37,39],"\u9759\u7684":[],"_schema":[],nginx:[],"\u30b9\u30c6\u30fc\u30c8\u30d5\u30eb":175,"\u30b3\u30e1\u30f3\u30c8\u30ab\u30e9\u30e0":79,"\uff09\u307e\u305f":[91,134,185,152],popular:[109,98],"\u518d\u751f":9,"\u4f5c\u696d":[],"\u5f37\u529b":181,"\u30c7\u30d5\u30a9\u30eb\u30c8":[1,91,3,4,46,145,98,7,9,28,192,55,115,109,11,152,86,13,155,16,59,116,117,157,19,159,25,66,47,70,71,124,170,126,194,76,175,78,171,113,81,182,185,131,156,140],"\u5927\u304d\u306a":[140,55,66],some:[150,78,190,5,36],"\u96a3\u63a5":[133,185],"~number":152,"\u5927\u304d\u304f":[13,156,11,159,171],"\u5927\u304d\u3044":[109,70,185,95,140,62,78,28,85,81],"\u3061\u3083\u3093":45,slash:152,"\u30af\u30a8\u30ea\u30fc":[],"\u5927\u304d\u3055":95,".sh":[7,120,180,153,82],run:[],".so":[22,177,10],processing:150,"\u81ea\u5df1":188,"\u4ed8\u3044":193,"\u5f37\u5236":[7,78,1,80,81],"\u898f\u683c":64,"\u4ed8\u3051":[3,13,163,48,7,173,175,104,97,79,55],"\u30ab\u30a6\u30f3\u30c8":[188,23,126],"\u305d\u3053\u306b":106,"\u4f3c\u305f":193,"_read":2,ids:[111,86],"\u5185\u5bb9":[42,142,3,94,96,49,7,103,106,109,152,153,13,64,120,170,125,78,79,179,81,185,182,84,188,33,136,140],idf:81,".garbage":126,"-separated":78,block:13,libzmq:[154,14],"\u3067\u3069\u3053":2,"\u30ad\u30e3\u30c3\u30b7\u30e5":[],".column":[126,81],".(":153,".)":[140,152,126,12,150],".,":101,".-":120,"..":[41,3,12,96,98,7,101,9,104,55,109,152,86,155,59,116,120,123,126,127,181,185,36,37,66],"./":[192,120],"\u5316\u6f0f\u308c":7,"\u3067\u3082\u3063\u3068\u3082":32,".\"":[45,109,3,92,12,13,163,33,48,115,116,103,85,152],".$":109,"\u5909\u66f4":[],".'":[7,74,126],".:":[132,65],"\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":188,patprefix:144,"\u652f\u63f4":172,"\u30da\u30fc\u30b9\u30c8":7,"[groonga":[7,28,153,81,78],pangolin:[7,14],registered:[41,33,10],tokenbigramignoreblanksplitalpha:85,".]":[152,86,155,127,104,106],"._":[109,185,131,13,126,80,81,152],"\u3002\u30bf\u30b0":[45,109,48,86],"_module":9,".i":130,utf:[43,4,132,124,156,98,126,7,192,85,152],".n":[140,109,152,84,185],".o":45,munin:[167,1,14,130,7,154,28,192],"\u306b\u5bfe\u3057":[1,3,92,94,145,7,104,10,128,109,152,153,86,155,114,62,22,45,70,126,74,186,75,79,80,81,182,83,185,131,133,37,85],".c":[109,43],".d":[154,168,140],"_max":[68,109,2,121,17,117,175],".x":130,"\u307e\u307e\u3067":71,".}":[127,152,86],"\u66ff\u3048":[],".t":85,"\u5099\u8003":126,flush:[],doesn:[123,9,12],"\u3002gnr":160,"#{l":150,"\u306b\u3068\u3063":[78,125],"_columns":[],"\u958b\u3044":[193,156,126,62,28,38,108],"\u958b\u304b":62,"\u9054\u3057":140,"\u958b\u304f":[17,7,28,140,78,193],"\u958b\u304d":[17,140,84],"_rate":[3,4,83,103,9,175],application:[98,9,55],"\u958b\u3051":7,"'\u3002":98,"\u56db\u3064":145,sigcont:126,"\u6642\u4ee5\u5916":156,"\u843d\u3061\u308b":[28,156,126],"\u767a\u884c":175,draw:45,"_realloc":41,"_len":[7,39,122],".patch":120,"(title":[126,12,112],"\u306a\u304c\u308b":7,"\u4e00\u5de5":144,required:[132,9,55,82],"\"suggest":172,"\u5b50\u5348\u7dda":76,requires:12,kawaji:7,"_pat":[],gt:[163,48],"\u30d6\u30e9\u30b8\u30eb":76,gr:[109,91],"\u30d5\u30a3\u30eb\u30bf\u30fc\u30c6\u30ad\u30b9\u30c8":109,gb:[168,4],ga:[91,170,193],go:[115,129],"\u30dc\u30c7\u30a3":[22,66,175,177,10],gi:91,"\u500b\u6240":81,".ssssss":150,nippon:179,"_unknown":2,"\u300cgroonga":[140,109,81,160],mbytes:170,"\u9632\u3050":152,"\u4e0d\u8db3":[167,130,14,154,102,138,78,81],"\u9632\u304e":126,"_users":188,"-aki":81,"\u304a\u304d":[133,153],mercurial:153,".mo\u30d5\u30a1\u30a4\u30eb":120,"/bin":192,"\u5341\u5206":[22,42,109,71,168,10],"/sbin":90,"\u8ca0\u6570":[7,19],download:[130,153],onigmo:[78,81,181],"-known":33,"/introduction":[3,103,175],opaque:175,".tsv":[178,4],"\u30dd\u30a4\u30f3\u30c8":[178,86],"\u983b\u7e41":[114,192],"\u4fdd\u5b58":[],"\u7b49\u5024":156,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[91,81],"\u578b\u7528":39,"-libstemmer":81,"\u62e1\u5f35\u5b50":[22,4,156,170,10,177],"- \"":81,"\u3002max":64,accessor:[114,80],".weight":126,"(table":81,blogroonga:[],"\u300d\uff08":[109,145,159],"_child":[2,175],"\u306e\u3042\u3068":7,"\u5177\u4f53":[71,79,131],"\u8fd1\u304f":[133,152,93],"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":[164,133,152,87],"\u540c\u3058\u578b":86,"\u898b\u3064\u304b\u3089":114,"\u898b\u3064\u304b\u308a":[109,85],"\u898b\u3064\u304b\u308b":7,"\u898b\u3064\u304b\u308c":125,"\u8d85\u3048":[71,126],realloc:156,manage:20,"boolean":43,"\u7d5e\u308a\u8fbc\u3080":[172,109,81],"\u3092\u304a\u3053":188,"\u624b\u9806":[],"\u3002\u30d0\u30b0":0,"\u7d5e\u308a\u8fbc\u3093":[133,126],"_no":[],"\u81ea\u5206":[23,125,170,9,138,120],milliseconds:132,soundkitchen:[7,28],cosmo:[126,81],"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0":[],started:[136,150,109,185,152],"\u5f15\u304d\u8d77\u3053\u3059":[7,126],"\u6cbf\u3046":81,"\u3002linux":140,"\u5371\u967a":[60,153,55],"\u53d7\u3051\u4ed8\u3051":[7,156,152],mitsuhiro:156,"\u7de8\u96c6":[],links:[13,103,131],sudo:[167,130,192,153,24,168,14,142,7,154,103,20,140,90,180,82],escaped:39,objname:[38,108],"\u30b7\u30e3\u30fc\u30d7":66,tokendelimit:[],"\u6df1\u523b":[7,71,81],"\u898b\u7a4d":78,"_repair":113,"\u512a\u5148":[133,170,179],"*valuebuf":42,tokenregexp:[],"\u5fc3\u914d":138,"\u9577\u4ee5\u4e0a":[114,80],spelling:92,".entries":140,"\u7d5e\u308a\u8fbc\u307f":[133,3],"\u66f8\u5f0f":[],rakutan:79,"\u81ea\u52d5":[22,45,3,122,153,95,185,170,152,7,114,61,9,62,10,144,28,78,177,81,120],"\u898b\u3064\u304b\u3063":[172,109,85],"_characters":39,"get\u30e1\u30bd\u30c3\u30c9":37,"+ff0":78,"\u30c7\u30d5\u30e9\u30b0":28,"!\"":[45,109,91,3,185,12,13,188,115,7,9,136,79,152,85,55,103],"-mysql":[167,130,14,134,154,193],"\u88dc\u8db3":9,geoppoint:111,send:129,"_match":[],auto:155,"\u629c\u304d\u51fa\u3059":133,"_seek":[2,175],takayuki:28,"\u306b\u304f\u308b":71,"\u5f15\u8a9e":3,"\u30a2\u30ab\u30a6\u30f3\u30c8groonga":125,"'query":7,"\u65e2\u5b58":[142,3,84,153,13,133,170,7,114,191,175,62,194,81],chunk:127,"\u751f\u6210":[],variety:45,special:109,"\u3050\u308b\u3093":[45,185,152],"-match":[],"\u306b\u304f\u3044":133,may:[84,12,123,137,29,122],"_default":[12,124,7,117,25,78,55],goroo:129,"\u30bd\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":120,"_script":146,"_proxy":9,"\"\u5f37":85,"\u307f\u3066":75,deprecated:[109,11],times:19,"-localstatedir":[],"\u307f\u304c":70,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30c4\u30fc\u30eb":[15,20],"_proc":[],".osdn":[153,26],"\u8aa4\u5dee":[28,76,171],largetext:95,"<max":98,unsupported:175,"\u305e\u308c":[109,70,121,152,153,49],"\u5185\u8fd1\u304f":152,management:[84,98,33,82],dump:[],mkdir:159,"\u6700\u4e2d":133,"\u52d5\u5c0f":46,"\u304a\u304b\u3057\u304f":156,"_bad":2,"-doc":113,"\u9664\u5916":159,"\u306f\u3058\u3081":[],configure:[],"_utf":[64,124],travi:126,lists:81,",..":[59,106,109],"_vector":[45,109,122,86,13,188,96,126,16,74,186,173,149,80,39,81],"*min":64,updating:19,"\u3092\u3054":180,"_recv":81,"-log":[],"\u305d\u3046":[152,125,101,104,97,82],"_expander":[],"\u306a\u304a\u3059":81,"\u8a72\u5f53":[122,163,33,48,17,114,101,97,64,79,80,81],"\u306a\u304a\u3057":81,unchanged:41,"-threads":[132,98],"\u56fd\u969b\u5316":[],"\u30c8\u30c3\u30d7\u30da\u30fc\u30b8":153,variable:41,"*ctx":[41,42,80,121,84,94,87,16,17,25,114,111,183,64,57,39,54,119,122],"\u30de\u30a4\u30af\u30ed":[13,188,46,152],need:[12,123,98,132,20,29,107,39,128],"\u3068\u307f":[37,109,126,185],"\u3002sql":109,"\u6f14\u7b97":[152,156,126,7,114,160,192,81],able:[123,29,12],"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":[109,11,168,98,194,192,170],"\u3092\u308a":9,"\u30b3\u30f3\u30d1\u30a4\u30e9\u30fc":192,"\u3002post":55,"-dd":[150,152],"\u4e00\u5ea6":[22,115,131,140,7,19,10,28,79,193,178,81,9],"\uff08markdown":153,url:[153,103,159,37,28,81],uri:[37,9],"\u6982\u5ff5":11,"_strerror":81,"\u57fa\u6e96":[13,133,3,153],"\u672b\u6c38":78,"_temporarily":[2,175],"\u5fc5\u9808":[],"\u3084\u3089":153,"\u3084\u3081":[28,126,81,78],"\u3002\u2193":98,ssssss:150,"\u53cb\u4eba":45,"\u6e2c\u5b9a":170,"\u624b\u9593":125,based:[142,111,12,123,163,33,48,187],launchpad:[14,153,81],"\u3068\u3066":[109,152,133,95,179,55,185],"\u65e5\u6642":[],":order":78,"\u4e0d\u6b63\u78ba":[7,83],"\\groonga":102,"\u5358\u306b":[69,126],processes:98,"\u4e0d\u8981":[133,126,7,78,85,81],sha:153,"\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":191,"\u79d2\u3088\u308a":148,processed:150,"\u7121\u3057":181,"\u3050\u308b":[78,160,185,152],"_parse":[78,124,39],"_setpshared":126,kawada:81,official:153,computed:41,"\\[(":181,computes:12,korea:131,"\u63a5\u7d9a\u5148":182,".list":[154,153],"2\u3064\u3081":[79,104,55,185],"|ga":109,"\u975e\u5e38":[7,55,181],"_word":[47,165,159,81],"\u7ba1\u7406":[],wibowo:126,written:[128,20],ken:45,"\u3084\u304c":11,importance:123,"\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":7,"\u3053\u308c\u3089":[3,4,95,49,7,9,10,192,55,167,109,76,152,86,14,71,61,160,22,45,24,126,172,177,181,130,185,131,188,134,154,37,89,193],key:[],"\u3084\u3057":109,limits:12,admin:[78,156,81],"\u3084\u307e":81,"\u682a\u5f0f":[78,81],"\u96e3\u3057\u3044":133,jersey:188,"\u304a\u3089":153,"\u4eca\u56de":[7,3,33,152],"\u4f5c\u6210":[],"_add":[94,114,39],"\u30af\u30ea\u30a2":[7,28,80],"\u3067\u3082\u3059\u3079\u3066":85,quit:[],"\u91cd\u8907":[78,114,81],"\u30b9\u30ab\u30e9":122,quiz:45,"\u547d\u540d":7,"\u306b\u3088\u3063":[147,3,6,145,98,8,106,108,109,11,86,13,114,16,60,157,159,160,194,161,45,70,23,135,73,126,83,127,175,80,182,74,133,37,38,141],"\u6b21\u671f":153,username:[45,102],"\u65e5\u672c":[185,153,46,35,75,171,85,179,81,152],corresponding:80,both:123,"\u4ef6\u542b":188,tweets:115,"\u7a2e\u985e":[],"_binary":7,"\u4ee3\u308a":[7,76,185],glossary:82,"\u3076\u3093":125,"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[109,91,186,13,113,116,102,9,104,140,28,178,81,66],"\u3084\u3059\u304f\u3057":78,demo:45,"\u3060\u304b\u3089":109,"/_":153,"\u76f4\u524d":94,"\u9818\u57df":[192,114,7,75,80,81],"/o":66,redcloth:153,"\u91cd\u8981":[115,109,91,153,86,180,133,32,16,17,125,9,192,100,85,55,66],"\u614e\u91cd":180,"/f":153,"/d":[81,9,55,181],"/c":[88,133,129],"/~":153,"\u91cd\u8996":[71,115],"-essential":[154,14],"/x":55,"-learner":[],"\u8aa4\u5b57":[156,126,7,78,28,178],crch:91,"(mroonga":178,http:[],effect:[],"\u306b\u3088\u308a":[3,144,46,7,9,52,55,109,76,153,13,67,71,126,127,175,78,79,81,133,85,103],"_ito":28,frequently:12,"\u305f\u3070\u304b\u308a":115,"/.":28,"/+":153,"\u540d\u4e00":106,"/(":153,"/'":81,"\u30ab\u30b9\u30bf\u30e0\u30bb\u30ec\u30af\u30bf":7,"/$":120,"/#":17,"/\"":[45,3,131,86,13,75,103,85],"/?":132,"/;":9,"\u6700\u5f8c":[91,152,153,13,156,170,16,7,71,9,78,85,181],"\u3042\u304d":144,accurate:33,"\u3042\u304f":17,sources:[96,153,20],"\u3042\u3063":[167,59,109,11,23,122,153,45,155,170,126,7,114,61,181,152,80,55,120],"-ruby":[7,153],"/kytea":91,"\u3042\u3068":[140,153,120],logger:[],"\u30aa\u30d5\u30e9\u30a4\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[78,113],"\u6790\u7cfb":152,"\u756a\u53f7":[182,142,122,170,98,126,55,61,103,181,81,175],"_mask":80,"\uff08or":160,".jp":[78,109,43,153],pikonyan:45,".score":128,"\u78ba\u4fdd":[42,168,39,16],"\u6587\u5b57\u6570":[33,152],"(\u300c":153,"/key":80,"\u4e0b\u8a18":[11,83,127,60,70,64],linux:[],library:[107,98,129],"\u3002optarg":84,home:[192,85,153],"'config":98,"\u30bb\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u30d5\u30a9\u30eb\u30c8":7,"\u5411\u3051":[],"_permission":2,"2\u6708":23,"\u304f\u308c\u308b":[88,133,120],nihon:179,"\u5411\u3044":[136,95,109,81],"\u3093\u304c":[185,152],"_number":[136,52,103,175],"\u3057\u3064\u3064":180,"\u3042\u308c":[115,152,153,71,170,17,101,97,66],"\u3042\u308a":[],"\u3042\u308b":[],offset:[],"\u304b\u3051\u308b":[125,9],"\"web":[18,49],"\u9055\u3063":179,".hash":188,"-source":153,"\u6f0f\u308c":[7,133,92,153,160],"\u306a\u3084\u308a\u304b\u305f":92,compatible:9,"\u9055\u3044":[109,76,3,185,13,75,79,181,85,55,66],"\u9055\u3046":156,"\u500b\u6570":[7,122],"<log":98,"_nhooks":94,additional:126,"_nsubrecs":[109,131,61,122,81],museum:188,"\u30ed\u30b4":7,"\u30ed\u30b0":[],"\u5c55\u958b":[],"\u7279\u6b8a":[],"\u3059\u3053\u308c\u3089":109,hw:90,"\ufffetext":91,hh:[150,152],"\u540c\u3058\u5024":[3,9],ho:85,ear:91,"/reference":12,"*var":41,truncation:[28,128],"_term":43,"\u3068\u3053\u306e":[140,109,179,181],"=submit":132,limit:[],libgcc:81,"-uploader":153,"\u3068\u3053\u308d":[69,152,88,113,74,146,85,120],"{\"":[165,23,185,86,123,155,163,170,69,48,49,115,116,18,146,79,181,179,127,152],"\u79d2\u5f62":46,"\u7389\u91ce":81,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":[7,175],eric:97,functions:[41,78,149,43,81],"\u3002video":45,halfwidth:193,"\u6163\u7fd2":7,"_many":[2,175,81],"_auto":[],"\u65b0\u3057\u3044":[],"\u65b0\u3057\u304f":[109,11,3,125,115,160,81,66],friends:45,sphinx:[88,15,120,81,20],katagiri:126,persistent:[96,114,84],"{\\":59,"\u305a\u308c":[74,11,6,133,46,98,76,59,13,114,8,175,70],"\u300csenna":109,"=redhat":192,"\u5927\u62b5":9,"\u3002scan":180,"\u30ab\u30e9\u30e0n":186,"_filters":[],calculate:132,segments:127,"/raw":82,"\u5bfe\u3057":[185,152],"\u592a\u90ce":45,"\u30df\u30ea":[13,28,46,75,152],updated:[71,43,120],"void":[41,84,5,124,114,25,117,19,64,80,113],updates:[33,20],"\u3066\u307f\u307e\u3057\u3087":75,"\u53c2\u7167\u5143":13,"\u30df\u30b9":179,"\u53c2\u7167\u5148":126,"=pat":113,vector:[],"\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":7,force:[78,91],"\u898b\u7a4d\u308b":168,japanese:[85,26],"*namebuf":[80,122],"\u3002grn":[70,160],implemented:[123,43],even:123,"\u62e1\u5927":125,"\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":[78,98],"\u50be\u5411":79,"\u6210\u529f":[],"new":[],tips:[],maverick:28,metadata:[7,123,29,12],"\u306f\u3044\u3051":[173,80,152,62,16],"\u5fdc\u3058":[133,181,170,42],"<directory":65,"\u4e2d\u4e95":126,"\u4eee\u5b9a":104,"\u305a\u306b":86,"\u305a\u3064":[140,79,98,170],":port":[37,98,9],"\u5411\u4e0a":[28,142,9,55,160],serch:[155,18],"\u3080\u308b":[185,152],concurrently:150,"\u826f\u3044\u4f8b":125,palallel:153,"\u9023\u7d9a":[91,71,145,126,18,80,85],".yml":82,typo:[28,81],recommend:129,"\u3082\u3057\u4e00\u3064":17,calc:109,type:[54,42,3,144,12,96,49,107,29,111,13,155,60,16,114,18,66,45,122,123,183,170,74,75,79,179,131,132,188,134],"-properties":14,posting:111,warp:81,language:120,"\u4ee5\u4e0b":[],"\u4ee5\u4e0a":[],"_comment":186,"_left":[28,111,2,175,35],"\u4e3b\u8981":138,akio:[7,156],root:[9,126,103],"\u306b\u95a2\u3057":[78,70,170,126,16],"\u304c\u3063":[],"\u304c\u3061":85,"\u80a5\u5927":81,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3":[1,38],"\u63a8\u5968":[136,109,11,7,103,138,140,78,81],editrc:28,normalizernfkc:[],"_xml":107,"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6\u30fc":81,"\u4f55\u500b":109,"\u6301\u3064\u3059\u3079":109,config:[1,11,102],"\u304c\u3059":114,"\uff08document":81,"\u9023\u7d61":120,sitedomain:[103,131],"\u30b9\u30fc\u30d7":145,"/result":113,"\u30fb\u5186":133,"\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8":79,"\u3002tsv":[136,178],"_indexer":113,"_indexes":[],"_win":41,"\u9069\u5408":[71,85,3],"\u30a4\u30f3\u30dd\u30fc\u30c8":[],"\u9023\u7d50":[7,78,79,80,126],"\u5206\u5c90":180,"\u643a\u5e2f":133,"_ja":126,"\u5358\u4e00":74,"\u5ea7\u6a19\u5024":[],"/acccess":142,"\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea":156,"_jp":192,"_small":[2,175],"\u6d6e\u52d5":[],before:82,scoring:[123,29,12],"-add":84,"=allow":109,"\u6574\u6570":[],"\"pp":81,"\u30d0\u30a4\u30b0\u30e9\u30e0\u30d9\u30fc\u30b9":85,weakness:33,"\u30b9\u30c6\u30fc\u30bf\u30b9":[2,126,62,175],"\u691c\u8a0e":[71,142],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb":9,"-pack":[],"\u691c\u8a3c":[182,81],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[],"\u30ec\u30d9\u30eb":[6,7,8,98,81],"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[],"\u30d1\u30b9":[3,96,98,9,10,78,192,55,153,62,65,22,170,175,28,177,81,182,84,156,148,37],"_stop":[165,47,81],extract:[150,49],"\u30ed\u30b0\u30d1\u30b9":156,realtime:[155,49],"/bc":153,content:[115,165,110,185,12,186,136,109,33,126,7,116,9,140,28,79,81,55,152],"\u6570\u3048\u308b":[109,131],grease:13,"/\uff09":156,"\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9":78,"\u8996\u899a":133,"\u30d1\u30ea":76,"\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8":[155,179],messages:126,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9":156,iso:152,isn:[98,16],hook:94,"1\u884c":170,"\u7531\u6765":160,"_filtered":143,outputting:107,"_keywords":39,"\u5358\u4f4d":[183,76,3,152,133,46,145,32,33,136,156,175,188,28,171,85],"_clear":[],"\u5b57\u5217":[28,46,185,81,66],"_chunked":78,mkostemp:81,"/mm":152,"\u5358\u4f53":[133,170],"\u5f79\u5272":[116,3],nsubrecs:[45,109,122,131,188],"\u63a8\u5b9a":78,distance:76,keyword:[109,185,12,123,163,33,48,126,7,39],".json":[4,9],enabled:150,"\u524d\u4ed8\u304d":80,gnupg:153,enables:9,"7\u3064":[23,166],modern:188,"\u30a8\u30e9\u30fc":[],"\u7e4b\u3052\u308b":125,"\u958b\u3051\u308b":[],"\u81ea\u52d5\u5207\u308a":81,estimated:111,"_cas":2,"\u3002\u3044\u304f\u3064\u304b":181,"_nabe":81,"\u30d6\u30ed\u30c3\u30af":[133,9,126],"\"service":18,"\u51fa\u529b":[],"\u3002\u30df\u30ea":13,"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":82,regular:[132,9,181],"\u3002munin":[154,130,14,167],"\uff08textile":153,"\u30d0\u30c3\u30d5\u30a1\u30b5\u30a4\u30ba":78,don:[12,123,98,49,137,9,29,107,39],radious:171,doc:[88,120,92,153,20],logyyyymmddhhmmss:132,"\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7":[18,179,148,49],"\u56fa\u5b9a":[3,96,175,64,80,81,66],"\u30b3\u30f3\u30c6\u30f3\u30c8\u30bf\u30a4\u30d7":175,"\uff08therubyracer":153,keybuf:114,"\u306a\u304a\u3053\u306e":170,"\u6210\u308a\u7acb\u3063":70,syntax:[98,175],"\u65e5\u672c\u8a9e":[0,185,71,133,7,152,85,179,120],"\u8ffd\u52a0":[],"\u7bc4\u56f2\u5916":81,"\"\u308d\u3086\u304d":144,yoji:28,"_address":[2,103,175],"_http":[170,9],"\u4e8c\u756a\u76ee":152,"\u72ec\u81ea":[],edict:81,stop:[142,12,123,98,7,9,78,29],"_limit":[],"/grntest":153,"\\\"}":59,gbyte:67,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[],"_index":[],bad:[126,81,175],architecture:98,"\u5024\u3060\u3051":152,"\u623b\u308a":[7,80],"*name":[41,122,183,124,16,114,80,39,54],"\u524d\u56de":153,",\"location":[45,75],"\u591a\u304f":[109,3,185,195,13,33,71,9,181,28,152,85,142,66],reference:[78,109,126,86],"\u591a\u3044":[71,185,152],"\u623b\u3063":9,".kentaro":126,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":145,"\u30aa\u30fc\u30ca\u30fc":126,"\u4e88\u7d04":74,subject:126,brazil:131,libgroonga:164,"\u6a5f\u80fd":[],"\u30b9\u30ab\u30e9\u30fc\u30c7\u30fc\u30bf":86,inappropriate:175,sigint:28,filename:175,simplest:36,"\u7bc4\u56f2":[],"+fffe":91,threasd:98,"_geo":[],"\u3092\u901a\u3057":[98,3],"_get":[41,17,122,42,94,113,124,114,16,7,25,117,19,78,64,28,80,39,54,81],"]\u3002":81,"\u534a\u5f84":171,"_operation":[2,175],"_level":[],"0x":[13,46,113,185,175],against:[98,84,122],"0c":85,"\u3044\u3044\u306d":[109,185,152],"0e":170,"\u8a9e\u5f59":[],appeared:12,"_reinit":80,"\u62bd\u51fa":[],"\u3068\u3044\u3063":[167,109,76,23,185,166,86,95,143,160,126,7,75,81,63,78,55,152],"_too":[2,175,81],loaded:69,"\u3068\u3044\u3051":[109,23,168,175,179,66],three:[13,123,3],"\u3068\u3044\u3046":[91,3,4,95,46,145,48,7,9,104,10,146,78,192,55,109,11,152,153,86,13,155,193,116,18,180,160,66,22,45,165,71,170,135,125,126,127,75,76,175,140,28,79,177,178,179,81,181,188,185,131,186,133,134,33,85,36,37,120,39,103],"\u3068\u3044\u3044":181,"\u30c8\u30c3\u30d7\u30ec\u30d9\u30eb\u30c9\u30e1\u30a4\u30f3":131,"\u7528\u3044":[],digits:150,"-help":[],"\u7591\u4f3c":[59,68,126,7,61,81],multithread:114,"-scorer":162,"_log":[],"\u53d6\u5f97":[],"\u554f\u984c":[17,1,3,185,153,168,156,74,126,148,16,7,127,9,78,170,28,152,85,81,120],logaling:82,"\u6700\u3082":[127,109,16],seven:3,ip:[132,170,103,175],is:[41,142,91,3,4,12,129,98,47,48,49,7,101,103,104,150,107,54,55,92,109,110,152,86,13,16,116,114,19,20,181,187,65,120,165,122,123,163,111,175,29,81,185,84,137,128,36,33,190,132,79,39,9],"\u6069\u6075":142,it:[41,142,5,129,98,150,107,59,109,111,12,16,115,114,20,152,65,45,122,123,128,84,185,132,136,137,39],voiced:193,il:[71,145],io:[],"in":[],ia:[71,145],ic:[121,85],id:[],"/commits":81,".nested":109,"\u305d\u3093\u306a":[192,66],make:[],"\u30b5\u30a4\u30c9\u30e1\u30cb\u30e5\u30fc":109,"\u306b\u3088\u3063\u3066":[11,3,13,133,126,16,71,61,180],"\u5f15\u7528":[98,126],unicorn:14,kib:[78,140],"8byte":175,failing:[],"\u3055\u307e\u3056\u307e\u306a":[],"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":[74,61,66],left:111,protocol:[],just:[84,12,132,188,98,190,115,150,80],"@groonga":[153,26],"||":[70,152,12,126,7,79],"=add":91,"|b":181,yes:[182,78,180,159,155],yet:[123,12],"\u5f8c\u65b9":[],"-with":[],"\u89e3\u50cf":156,candidate:[132,155],defrag:[],character:[41,150],"\u306f\u3059\u3079\u3066":[69,91,3,152,47,109,59,137,9,160,146,118,193,85,66],save:[132,153],"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":[],"_close":[41,70,121,87,16,17,64,28,80,39,81],"|>":150,"|<":150,"|:":150,"\u5cf6\u7530":7,background:98,"\u6539\u540d":[7,28],mruby:[146,69,126,81],"\u52b9\u7387":[78,79],"*oldvalue":122,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[],centos:[],"_db":[],"\u3067\u3044\u3046":[193,131],"\u4f7f\u7528":[],raltime:49,total:[127,170],"\u5bc6\u9375":[],"\u5c11\u3057":192,notification:150,tracker:0,localhost:[182,4,153,132,170,98,9,104,28,55],"\u7a0b\u5ea6":[28,3,126],"\u53c2\u8003":[],compress:74,"\u5b8c\u5168":[],"\u304c\u308f\u304b\u308a":[188,110,85],"\u304c\u308f\u304b\u308b":76,"\u898b\u8fbc\u3081":81,"\u304c\u308f\u304b\u308c":109,postgresql:[133,33],"\u30bd\u30fc\u30b9\u30ab\u30e9\u30e0":[78,96,81],"\u30c1\u30a7\u30c3\u30af":[182,97,156,170,126,7,127,62,78,28,81],"=true":104,"*optarg":[57,84],commit:120,automatically:[],"_ratio":81,sphr:76,"\u30ad\u30e3\u30f3\u30bb\u30eb\u30ea\u30af\u30a8\u30b9\u30c8":104,contrib:153,"\u66ff\u308f\u308b":78,"\u305d\u3061\u3089":192,editor:120,"\u6291\u3048":71,fork:120,tokenbigramignoreblanksplitsymbolalphadigit:[],form:[3,185,132,175,52,193],"\u3059\u304e\u308b":86,"\u7f6e\u3044":[153,81],".ne":43,"_animal":13,"\u5165\u308c":[71,45,85,188],"\u5165\u308b":106,"\u5165\u308a":[],grroonga:172,"\u5426\u5b9a":[],lenny:28,"delete":[],"_location":[136,188],"\u6c7a\u3081\u308b":[109,70],kwic:33,"\u3002\u307e\u3060":81,"\u5165\u3063":[45,3,136,126,7,175,78,79,179,180],"sort\u30ad\u30fc":1,floating:46,"\u73fe\u5728\u5730":188,"\u30a8\u30c7\u30a3\u30bf":120,tokenbigramignoreblank:[],appveyor:81,"\u3002\u307e\u305a":71,"\u914d\u5217":[],"\u3002\u307e\u305f":[182,109,11,3,152,13,133,46,98,75,18,175,70,37,178,170],retry:175,"\u30cf\u30a4\u30e9\u30a4\u30c8":[163,48],"\u300d:":193,".service":7,fsf:7,macports:[],"\u6539\u5584":[1,126,7,78,28,81],"_offset":[],"\u5909\u308a":81,"\u9069\u5207":[109,91,23,133,156,170,81,78,181,85,3,66],managed:36,"\u81ea\u52d5\u7684":170,segv:[1,126],"\u7279\u6027":95,manager:[9,55],"\u7fa9\u8a9e":178,technique:[123,12],"\u3068\u3059\u3050":115,"\u524a\u9664":[],kinjirou:45,"\u30bb\u30c3\u30b7\u30e7\u30f3":[161,98,175],string:[],"-efficient":86,"\u8a2d\u8a08":[109,142],"\u4e0a\u91ce":156,"[php":[7,81],"\u30b5\u30f3\u30d7\u30eb":[],"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de":18,"\"mysql":[172,86],"-escalation":[],item:[155,18,179,190,49],"\u672a\u6e80":[64,185],"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba":127,"_entry":94,"-deb":153,"\u4ed8\u4e0e":[],"\u52a0\u308f\u308b":125,"\u629c\u3051":[28,126,81],"\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":170,"\u5076\u6570":152,"\u63db\u6642":28,"\uff08normalization":193,"-dev":[153,14,126,26,7,154,180,78,28,81],"\"xxx":126,">alloc":4,"\u4ed8\u304d":[],"\u4f8b\u3068\u3057\u3066":[13,140],"\u30a8\u30f3\u30c8\u30ea\u30fc":109,"-mode":120,shift:[192,85],"\u3068\u3059\u308c":133,"_version":[],"[suggest":[7,113,126],bom:156,suggestion:[132,190],raccoon:45,bob:[109,185,188,116,60,9,97,128,55],useful:[79,98,122,12],"\u30dd\u30a4\u30f3\u30bf":[16,114,64,80,54,119],"\u5fd8\u308c":[28,86],"\u3002table":[114,173,119],"-leak":156,"\u521d\u671f":[84,133,156,7,28,80,81],sako:78,"\u4e21\u8005":75,"-check":[132,28,156],"\u5916\u90e8":135,"-libevent":113,"\u5e74\u9f62":[133,66],"_min":[78,109,121,117],ooo:95,"-each":28,"\"color":193,"/nfs":192,"po\u30d5\u30a1\u30a4\u30eb":120,"\u8fd1\u3055":152,"\u30b8\u30aa\u30b5\u30fc\u30c1":[],"\u542b\u307e\u308c":[22,109,133,145,33,126,136,97,10,177,66],"\u8fd1\u3044":[64,182],ull:91,"*tc":[64,121],"-directory":7,"\u30fb\u30b5\u30fc\u30d0":3,sample:[132,170,65],normalize:[],"\u3002\u30ed\u30b0":[9,66],"\u30d0\u30a4\u30c8":[109,2,122,95,46,156,33,16,7,126,78,64,28,81],"/cpuinfo":[154,130,14,167],"\u8a9e\u53e5":[78,126,45],"_current":17,map:[28,150],groo:109,"\u518d\u8aad":[194,178],max:[],"\u524d\u3082\u3063":78,mac:[],designed:129,man:[1,97],"\"serach":18,fluent:105,nsis:153,"_values":[],"\u5e02\u5185":93,"\u3002html":163,pointed:41,"_init":[41,5,16,7,150,28,80,39,81],pointer:41,"/fedora":[7,167,156,153],group:[114,131],"\u304b\u306a\u308a":81,"\u8a08\u6e2c":[28,1,180],"\u7d44\u307f\u5408\u308f":[133,109,70,97,66],mail:170,main:[154,153],"\u30b9\u30c6\u30df\u30f3\u30b0":[165,81],"\u91cd\u306a\u3063":126,"\u5b9f\u4f53":16,repositories:153,"_timeout":[2,19,175],unlock:80,nroonga:[116,79,82],"\u5b9f\u4f8b":[],"\u624b\u6bb5":[70,39],morning:115,"\u6240\u5c5e":60,"\u7a7a\u304d":[127,168],"\u5831\u544a":[],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[],".flags":114,correct:[132,155,18],"\u624b\u7d9a\u304d":[94,54],"|allow":[109,185],"\u30ab\u30e9\u30e0id":114,earlier:128,"_content":[],"\u3002min":64,debootstrap:153,"_string":[],org:[103,131],"\u62ec\u5f27":59,"\"hello":[165,47],"\u4e8b\u9805":[],rewrited:43,"\u6b21\u90ce":45,"\u304c\u3042\u308a":[0,165,76,153,109,37,178],"] [":170,first:[41,109,185,12,188,152],"\u5468\u8fba":[7,33],"\u30dd\u30fc\u30c8":[182,142,4,170,98,126,103,55,175],"\u7db2\u7f85":9,"\u9078\u3079":109,fast:[136,109,91,185,12,123,163,33,48,59,101,110,79,152],"\u81ea\u5df1\u7d39":188,crit:[6,8],"\u9078\u3073":172,"\u9078\u3076":[133,109,9],"\u306f\u3044\u308f\u3086\u308b":78,"1g":[154,14],"1f":78,"\u30bd\u30fc\u30c8\u30ad\u30fc":[155,1,114,109],"\u30d8\u30eb\u30d7":180,"1o":181,"_preparer":[155,18,179,49],"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0":133,memo:[123,116,29,81,12],"\u62e1\u5f35":[],"\\ahost":181,"\u305d\u306e\u5f8c":[109,152,16],"\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb":11,"11":[109,152,86,71,116,140],"10":[170,3],"(grn":[78,39,16],yoshioka:7,poyonga:129,"\u5229\u7528\u4f8b":133,zsh:[192,153],dash:192,"\"application":28,katakana:[193,179],".uuuuuu":152,"-receive":[132,65],speakers:26,"_open":[41,17,2,121,84,87,156,16,7,111,175,64,28],"\u914d\u5e03":[167,130,14,7,154,102,138,81],"_network":2,"\uff08rroonga":78,"\u8d70\u67fb":81,"\u5217\u4e2d":152,"_recursive":78,"\u6700\u7d42\u66f4":84,timeuot:19,">#{":150,"_enc":[64,124],performance:[132,33,129],"\u5f79\u7acb\u3061":126,theatre:92,normal:12,"(message":123,beta:43,pair:[155,18,179,190,49],synonym:[109,92],"_sort":114,fills:132,"\u4f1a\u793e":[78,81],")grn":78,"\u8003\u3048\u65b9":81,"|ng":109,"\u539f\u56e0":[],precise:[7,14,153],lexicon:[186,170,115,116,159,78,106,79,193,66],show:1,"-po":[],"\u6700\u5927\u5024":[109,143,166,7,63,23,81],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[],threshold:[25,28,38,80,78],"\u77ed\u6642\u9593":133,"-plugin":105,"\u306a\u3093":11,"\u306a\u308c":11,"\u30d5\u30e9\u30c3\u30b7\u30e5":78,black:193,"\u306a\u3089":[143,98,7,9,149,110,167,109,11,152,86,14,114,18,180,62,63,161,181,66,165,70,23,122,166,168,170,126,83,173,78,79,80,179,81,82,130,84,185,154,140,193,85],"\u306a\u308a":[2,3,4,46,98,7,9,104,10,72,78,108,59,109,11,152,153,86,13,155,16,17,114,18,61,118,144,181,66,22,45,165,23,122,71,170,125,126,171,115,74,75,76,175,28,79,80,178,179,81,82,193,84,131,133,185,33,177,136,85,188,37,38,39,103],"\u306a\u308b":[1,3,46,98,49,7,101,102,9,192,108,167,109,171,152,153,154,13,14,16,115,116,159,66,120,70,71,170,125,126,74,173,97,78,80,81,185,130,84,131,133,156,33,148,35,138,140,38],info:[6,98,123,8,9,181],"\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8":55,wheezy:[],get:[],"\u96c6\u3081":131,"\u51fa\u305b\u308b":133,geo:[],gem:153,"\u3002utf":[193,126],tokyogeopoint:[111,46,35,75,28,171],synonyms:178,summary:[],"\u300c\u697d\u3057\u3044":145,".conf":[78,142,9,168,140],wiki:9,"\u8907\u96d1":[109,70,152,126,7,181],sear:179,masahiro:156,ency:170,"\u884c\u306a\u308f":7,"\u53ca\u3073":170,enough:[],"\u30dd\u30b9\u30c6\u30a3\u30f3\u30b0\u30ea\u30b9\u30c8":78,checks:[134,84,81],parent:109,"\u6700\u5c0f\u5024":[109,143,152,166,63,23,81],"\u306a\u3073":78,"-blog":188,"\u306a\u306e":179,"\u3088\u3063\u3066":[93,91,72,46,100,75],"\u306a\u3069":[100,93,91,3,95,46,145,48,49,7,146,103,78,105,192,55,109,11,152,153,13,115,18,160,194,181,120,164,69,70,71,163,170,127,28,80,178,179,81,185,84,133,33,188,85],"\u306a\u306b":[],je:144,"\u306a\u3067":179,ja:[153,120],"\u306a\u3063":[142,91,3,7,103,78,55,109,11,152,153,86,13,180,23,71,125,126,127,28,79,113,179,81,185,133,156,136,188,140],"\u306a\u305c":[165,185,109,18,181,152,193,85,179,66],"\u5206\u5272":[3,152,95,145,133,78,28,85],"\u306a\u305f":78,"\u306a\u3059":35,"\u306a\u3055":[37,68],"\u306a\u3057":[],nogpgcheck:7,"_allowed":[2,175],"\u306a\u304e":186,"\u306a\u304f":[93,1,3,92,95,96,142,7,9,10,78,192,55,109,152,153,13,16,160,66,22,23,170,125,126,186,97,28,79,80,81,82,185,131,133,156,33,140,89,85],"\u4f8b\u5916":[146,167,69,81],"\u306a\u304a":[145,153],"\u306a\u304b":125,"\u306a\u3044":[],"*bsd":[28,156],"(cmp":81,"[mdev":78,"}:":181,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":145,"\u4e0d\u9069\u5207":[7,81],cancel:[36,104],"\u5f15\u304d\u51fa\u3059":133,"}/":[22,120,192,177,10],"}.":[116,109],"})":132,".select":[170,152],"\u524d\u5f8c":[98,3],"\u9ed2\u3044\u70b9":93,mark:[78,193],"&filter":104,"*max":64,shopping:115,"[admin":[7,28,126],"\u5b57\u5c0f":[109,181],"}|":150,senboku:126,"}e":152,"_avoided":[2,175,80],"\u6240\u5b9a":[71,165,145,66],sound:[18,193],"_information":96,"\u30bb\u30df\u30b3\u30ed\u30f3":170,"\u30af\u30a8\u30ea\u30fcapi":[2,32],"}]":[],"}\\":152,hdd:170,"_corrupt":[2,175],"\"mroonga":[186,109,152,159,86],"\u8abf\u67fb":78,"\u6587\u66f8\u5185":165,characteristics:33,"\u8af8\u6761":67,"\u578bn":109,"\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0":126,"|')":74,"\uff01\u3057":26,"-document":[],"\u3002\u5024":97,different:132,pat:[64,95],"\u91cf\u8a08":1,same:[12,129,123,36,86,126,19],compiling:[],arguments:[41,98],"=squeeze":153,"\u3002\u3044\u307e":113,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":[],"< y":126,"\u8a00\u53ca":[188,186],"\uff01\u300d":[109,185,152],"\u7b49\u4fa1":[],"< n":152,running:[36,98,104],"\u672c\u5f53":[92,179],montywi:113,"\u305d\u3057\u3066":[109,91,131,13,133,33,188,79,179],macro:[],markup:88,"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":81,"\u8aad\u307f\u98db\u3070":3,solve:[123,12],"_float":[78,183],"\u6b21\u56de":[11,153],"_invalid":[64,114,2,80],"\u5927\u8cb4":7,money:45,"\u5927\u898f\u6a21":133,"\u3002\u3059\u3079\u3066":[60,180,120],"\u518d\u8d77":[78,142,178,140],".dll":41,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30d7\u30ed\u30b0\u30e9\u30e0":126,"\u30c0\u30a4\u30a2\u30ed\u30b0":126,"\u958b\u3053":84,"/false":[13,1],"\u4e2d\u592e\u5024":81,"\u5ea7\u6a19":[93,76,152,188,35,28,171],"\u56f0\u96e3":[7,133],"_syntax":[2,39],"\u9069\u5b9c":[153,81],"'ve":188,"\u9650\u308a":[70,71,145,59,61,80],"\u9650\u3089":125,quantal:7,specifies:[132,98],"\u30ed\u30fc\u30c6\u30fc\u30c8":98,"\u9650\u3063":80,"\u7be0\u7530":[78,81],testdb:[170,65],specified:[41,111,54],users:[],"\u99c4\u76ee":125,ellip:76,"/database":[9,55],": n":182,"\u65b0\u5bbf":75,critical:[41,150,98],"\u6d0b\u5fd7":81,"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":[],valuebuf:42,uubntu:180,"\u30cb\u30c3\u30dd\u30f3":179,"\u306f\u3044":13,broken:[137,175,84,122],"\u306f\u305a":[7,140,85,170],"\u307e\u3064\u308f":126,"\u306f\u3069":[109,179,66],"\u306f\u3068":95,develops:165,"\u306f\u307f":89,mixed:[],"@soundkitchen":[7,28],"\u3082\u3061\u308d\u3093":[170,131],"\"\u30df\u30ea":152,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":[],"_reopen":[],"\u8abf\u6574":[71,168,109,85,160],"\u3002\u3059\u3050":9,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b5\u30a4\u30ba":140,"_cache":[],"\u4f55\u5ea6":[126,104],"\u7279\u6709":[],"/ '":80,"\u306a\u304c\u3089":[109,91,3,153,133,7,85],"\u3002command":11,"\u63d0\u6848":[],"\u3082\u3046":[115,112,13,16,7,9,79],"\u8a18\u8f09":[7,153],"\u3002cpu\u30b3\u30a2":55,"\u3082\u3057":[2,101,9,104,192,55,109,76,152,17,116,62,181,66,170,126,186,97,178,81,82,185,136,140],"\u7834\u58ca":114,"\u516c\u958b\u9375":153,"\u3082\u3059":[22,10],"\u3082\u305b":62,"\u3082\u3064":[78,173,131],"\u30c7\u30d7\u30ed\u30a4":9,"\u3082\u306e":[3,98,7,101,102,9,143,109,11,153,13,17,114,18,63,64,120,68,70,23,166,170,126,76,175,78,79,171,81,181,182,193],"\u30a4\u30f3\u30af\u30eb\u30fc\u30c9":78,"|on":109,"|oo":109,"$prefix":28,"\u5883\u754c":[76,143,166,7,63,23],file:[],"*obj":[42,80,84,94,57,39,54,119,122],again:[9,19],"\u53d6\u308c\u308b":59,"\uff08true":13,"\u5f37\u5316":[28,156,81],"\u4e0e\u3048\u308b":[59,182,75,11,98],"}}":86,"\u3002pcre":9,"\u3068\u3053\u308d\u3044\u304f\u3064\u304b":86,"\u8a18\u8ff0":[70,3,188,98,78,79,170],"\u4e00\u6642\u7684":80,"\u4e0a\u9650":[],important:[123,29,12],"6gib":140,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":98,"_all":[78,16],remote:98,starting:41,"#delete":78,sergey:81,"\u30a8\u30e9\u30fc\u30c1\u30a7\u30c3\u30af":[7,28,81],expressions:9,"\u4e00\u5207":78,nested:126,libmsgpack:[154,14],"\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":[78,81,5],"_difference":114,"/lib":[22,142,9,62,10,177],"-alloc":83,"\u8aad\u3081":7,"\u8aad\u3080":69,"\u5dee\u5206":170,"\u8aad\u3093":[89,82],"\u4f4e\u4e0b":126,")mroonga":178,hottolink:43,"\u52e7\u3081":81,"\u306f\u3053\u306e":[168,109,85,186],sigusr:28,"\u30d6\u30c3\u30af\u30de\u30fc\u30af":86,"\u771f\u507d\u5024":[],"\u304c\u3053\u306e":185,titles:[185,152],plugins:[140,10],"\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af":180,abi:78,"\u3002amazon":109,"@orangain":126,tokenbigramignoreblanksplitalphadigit:85,"_append":[87,70,39,80],"\u30e1\u30bf\u30c7\u30fc\u30bf":[146,69,96],"\u8aad\u307f":[],"\u5909\u66f4\u5f8c":[124,114,16,117,25,80],"\u307e\u3057\u3087":[45,109,76,3],".value":109,"\u30c6\u30b9\u30c8":[],threads:[132,150],tokenbigramsplitxxx:85,"\u6e96\u5099":[],"\u6d3b\u7528":142,"\u5931\u308f":7,search:[109,91,185,12,123,155,163,98,33,48,49,7,172,114,18,64,28,29,178,179,152],published:153,"\u300c\u5024":66,aptitude:180,"\u672a\u77e5":113,memos:[149,165,101,12],".synonym":109,"\u78ba\u7387":155,distinct:132,"\u5ca9\u4e95":[7,126],"\u5317\u534a\u7403":7,"\u30b0\u30ed\u30fc\u30d0\u30eb\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":17,"\u5c0f\u5024":[143,23,166,63],"_gqtp":170,"\u3053\u3068":[],"\u3053\u306e":[2,3,4,12,7,91,9,76,13,14,17,18,19,23,24,186,28,31,32,33,85,41,48,49,50,51,55,167,59,60,62,63,64,66,45,69,70,71,74,75,78,79,81,82,39,154,89,90,92,95,96,98,26,100,102,104,192,109,171,86,113,115,116,114,118,120,123,163,126,128,130,131,133,134,136,137,138,140,143,145,149,146,152,153,162,164,47,166,170,175,97,177,178,179,181,185,188,189,195],varying:41,"[element":[152,86],"[example":[78,81],none:[109,91,134,98,47,190,137,9,79,192,175],"\u6708\u6b21":78,hour:[150,19],"\u3053\u3053":[109,3,185,153,13,188,136,71,75,155,152,193,178,82],dev:[154,14],deb:[7,154,14,153],"\u3053\u3046":125,"\u4e2d\u5fc3":171,share:192,shard:[],"\u96c5\u5e83":81,minimum:41,numbers:36,"/..":[9,153],strlen:41,"\u3053\u308c":[91,143,92,5,95,145,48,49,7,9,104,10,78,192,55,115,109,76,152,153,86,88,17,18,63,181,66,22,70,23,166,71,168,126,74,172,75,175,97,28,79,177,178,179,81,185,193,84,131,186,133,33,13,188,140,120,85,118],"\u3053\u3080":69,"*value":[64,42,114,80,87],"\u591a\u3059\u304e":156,"/afr":[75,3,131],"\u666e\u901a":[125,152],mariadb:[126,81],"[key":78,response:132,kuriyama:81,"\u3066\u304d":2,"\u3066\u304f":180,"\u30c4\u30a4\u30fc\u30c8":[],"\u547c\u3073":[109,70,5,86,13,170,98,33],"\u547c\u3070":[109,3,152,46,114,16,60,126,78,54],"\u3002ftp":170,"/vector":[149,78],"`hostname":98,"\u5217\u578b":[13,131,185,81],"\u3002\u4f8b":[78,80],finalizes:41,through:9,"\u975e\u308f":145,existence:84,"\u308c\u308b":[93,3,94,95,46,145,98,49,7,101,104,78,146,192,54,115,109,11,153,86,155,194,16,17,60,18,61,180,64,66,69,70,23,71,135,170,126,127,75,76,175,97,28,179,81,181,193,186,133,134,33,120,85,118],"-launchpad":153,"\u6955\u5186":[76,171],good:[165,152,109,47,115,185],timestamp:23,"\u3079\u3066":[109,9,131],"\u9664\u304f":7,"\u5316\u95a2":156,"\u3079\u304d":[193,152,153,96,175,80],"\u3079\u304f":3,"\u9577\u91ce":81,"\u9664\u3044":[143,166,170,33,101,63,23],"-encoding":[],micro:188,token:[],learing:49,"\u52b9\u679c":188,"\u9664\u3051":114,"\u767b\u9332":[],another:78,hard:140,"\u4ee5\u964d":[93,110,23,153,180,163,156,98,126,48,103,78,28,193,85,81,120],flower:13,"\u30d5\u30e9\u30f3\u30b9":76,"\"gr":66,"\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":180,"\u8ddd\u96e2":[93,1,76,152,112,133,7,75,171],"\u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc":102,foreground:98,"\uff08\u79d2":80,"\u3068\u3082\u3063\u3068":192,"\u5024\u4ee5\u4e0a":98,"\u89b3\u70b9":[168,101,152,81],"_blank":134,tahr:[14,81],"\u4e09\u8c37":81,tritonn:[109,185,152],"\u308c\u305a":11,"(default":78,"\u306b\u3082":[109,145],"\u306b\u3088":7,done:19,"\u30cb\u30e5\u30fc\u30e8\u30fc\u30af":[188,76],".blog":71,"_data":[],koi:[7,192,98],"\u306b\u5bfe\u5fdc\u4ed8\u3051":179,"\u516c\u5e73":126,"\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf":55,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6":[37,98,9],"/archive":153,"*results":114,selector:157,"\u308c\u307e\u305b":[11,163,98,127,114,79,192,178],"\u6574\u7406":[7,126],"},":[91,3,92,149,128,144,109,76,152,86,115,116,60,169,45,47,27,170,110,79,181,185,188,85],"\u4e71\u6570":[68,75],"_tag":[163,101],markus:7,"\u8a18\u9332":[22,133,7,61,10,78],"\"requires":7,"\u30d3\u30e5\u30fc":7,"\u4e0a\u8a18":[3,49,7,192,109,110,116,18,120,67,23,71,170,186,75,175,97,78,178,82,131,66,85],ages:[106,97,66],"/lc":[153,120],"\u51fa\u6765\u308b":188,"_scorer":78,"\u5217\u8868":[46,39],built:80,"/lists":153,"-limit":[1,98,109,126],extracted:39,"\u307e\u3068\u3081":[],build:[153,14,126,83,154,102,20,82],"_available":[2,175],"\u6b53\u8fce":89,eggs:79,"[experimental":[],most:111,"~*":39,"\u306b\u3057":[109,152,126,78,81,185],myisam:133,"\u5e73\u884c":153,"-protocol":[37,98,103,170,52],"\u306b\u3059":71,kb:168,ka:193,"\u306b\u3066":[7,78,76,126,153],"_put":[],"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":127,"\u306b\u3069":70,ko:43,km:188,"\"theater":92,"\u7528\u8a9e\u96c6":127,"\u4e0a\u66f8\u304d":[75,153],mlock:156,think:[123,29,12],"_by":[41,188,113,148,114,78,64,28,80,39,81],"(drilldown":61,"\u30d1\u30c3\u30c1":[],"[number":59,relation:80,nterms:127,"[mecab":78,find:20,"_int":[78,80,39,183],proonga:129,"\u7d50\u57ce":81,"\u30a2\u30ca\u30a6\u30f3\u30b9":153,permission:175,express:[7,102,126],"\u601d\u3044":120,"\u601d\u3046":[79,131],"\u62c5\u5f53":153,resolve:[123,29,12],"\u9593\u9055\u3063":[126,7,172,18,62,28,81],"\"popular":109,transitional:142,"_and":[70,57,12],"\uff08byte":[80,122],common:[64,28,114,98,152],"\u601d\u3063":88,"+fff":85,"/log":[142,132,98,9,78,192],"_sjlj":81,lion:7,tokenizers:[169,91],"\u76f8\u624b":125,"[backslash":185,please:[142,84,12,123,29,120],"\u30e2\u30b8\u30e5\u30fc\u30eb":[],"(news":153,"\u5024\u57df":72,".log":[142,11,12,170,98,9,78,192],"\u30cb\u30db\u30f3":179,readme:[126,153],"\u8a9e\u4ee5":[85,152],"\u8868\u73fe":[],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3api":7,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30a8\u30e9\u30fc":78,"\u66f8\u3051\u308b":[7,126,81],reverse:[9,153],hiroyuki:78,"\u6570\u70b9":[46,109],"-file":[132,28,136,98,78],"\u5b9f\u51e6":[70,54],"-org":153,point:[],simple:142,"\u3059\u304e\u307e\u305b":45,"\u306f\u3058\u307e\u308a":11,hideki:78,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b9\u30bf\u30a4\u30eb":181,simply:123,shutdown:[],"\u6253\u3064\u524d":153,"\"gronga":172,"_connection":2,create:[41,98,159],"\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8":[17,186,16],"\u53ce\u96c6":[136,133],"_when":136,"\u30a2\u30ed\u30b1\u30fc\u30c8":83,bill:[71,145],replaced:[65,190],ful:91,"\u30c8\u30fc\u30af\u30f3":[165,91,152,95,145,126,49,47,18,78,28,193,85,156,81,66],engi:[155,179],larger:[65,49],cents:85,karmic:180,"^ \"":152,itself:86,"\u56db\u5247":81,"\u3082\u308c\u308b":78,rubygems:7,"\u95be\u5024":[],"-key":[113,153],"\u3070\u3053\u306e":78,"\u7d42\u7aef":[7,39,84,16],emphasize:110,")groonga":178,"\u56fd\u540d":131,development:188,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":81,"-chroot":153,"\uff08perl":9,keys:[],"-existence":126,aggregate:33,"\u5834\u6240":[],"\u53cc\u65b9":125,"\"\u3001":[179,131],"\"\u3002":81,"\u5409\u7530":126,"\u7d44\u307f\u5408\u308f\u305b":[70,3,153,71,133,74,85,81],flags:[],sortby:[],entry:[74,147,94,73,59,137,173,157,38,108],"\u305f\u3059\u3079\u3066":109,"\u3064\u307e\u308a":[78,109,91,23,153],sunos:81,"\u3002dump":159,"\u547c\u3073\u51fa\u3059":[68,171,112,35,160,184],"\u3001\u00d7":125,"\u5024\u306a\u3089":126,"\"value":109,"\u547c\u3073\u51fa\u3055":[94,109],"\u547c\u3073\u51fa\u3057":[],"\u8fd4\u3059\u4f8b":149,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb":170,"\u306f\u3069\u3061\u3089":55,source:[45,3,84,153,188,96,74,60,136,78,79],win:102,"5\u3064":97,bin:[102,20],"\u5171\u901a":[143,23,152,166,95,46,125,63,28,79],kashihara:81,"\u968e\u5c64":70,bit:[167,130,24,46,14,170,126,154,102,138,78,82],"\u5f53\u3066":[95,91,106,104,16],"\u30d7\u30e9\u30b0\u30a4\u30f3":[1,143,69,7,146,10,149,78,192,167,14,116,159,120,22,165,23,126,28,177,178,81,130,133,156,148,154,193],"\u5927\u4e08\u592b":[192,125],"\u8aa4\u308a":[7,78,126,81],"\u5354\u529b":[],hardy:156,"\u4e0a\u8ff0":178,api:[],"-command":[],"_over":[2,175],"\u4ee5\u5916":[93,5,95,46,109,153,86,16,17,114,62,181,66,70,121,122,183,170,126,83,28,80,81,185,84,133,156,39],google:[123,172,29,109,12],"\u5168suffix":114,"\u8aa4\u3063":[7,78,126,81,153],examples:156,"\u3001[":3,server:[],"\u3002set":170,"\u66f8\u304b":[7,188],"\u3001c":3,"\u66f8\u304f":[79,185,81],"\u8a73\u3057\u304f":[13,133,3],"\u66f8\u304d":[],"\u66f8\u3044":[152,188,185,78,81,181],newark:188,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u30fc":81,"\u3002travis":82,"\u30d3\u30eb\u30c9":[],"\u5024\u306a\u3057":113,"/cutter":153,"\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":70,"_checks":134,cxxflags:24,"\u3001#":188,"\u3001\"":[110,3,92,186,101,188,46,126,49,7,172,18,28,179],"\u3001$":153,"\u3001'":[152,13,46,98,116,124,81],"\u3001(":[64,46,170,114,97],nginxhttpstubstatusmodule:81,"\u3001-":[46,156,170],"\u3001/":[3,103],"\u3001.":[180,120],"\u5730\u5f62":[76,171],"\u3001:":170,"(fedora":142,"\u3084\u3059\u3044\u304b":178,"\u3001>":73,"\u3057\u307e\u3059":[109,185,188,145,130,172,152],"\u7a4d\u307f\u91cd\u306a\u3063":126,"/yum":153,"\u9010\u6b21":[133,85,81,181],"\u5927\u95a2":81,"\u6295\u5165":[71,1,23],"[label2":109,"[label1":[109,81],"_fin":[7,41,39,5,16],errno:[78,81],"\u51fa\u3059":188,"\u51fa\u3055":126,translate:[120,20],"_full":[],"-type":[49,18,9,28,179,55],"\u7b97\u8853":[],"-binary":[9,55],"/epel":130,"\u56de\u907f":[],"\u52d5\u304d":[109,55],"\u52d5\u304f":[7,28,192,195,140],"\u52d5\u304b":[126,81,181],"*keybuf":114,"\u30b3\u30de\u30f3\u30c9\u30d1\u30fc\u30b5\u30fc":181,curl:[192,4,132,98,7,9,104,90,55,82],sourceforge:[78,153],cmake:[7,192,102,126],"\u6570\u73e0":186,functionality:132,"_enabled":78,"\u5207\u308a\u6368\u3066":13,libwinpthread:81,"\u30c7\u30fc\u30bf":[],"\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb":170,"_empty":[2,175],confirm:120,"_nil":[64,114,156,39,16],failures:153,"\u7d50\u5408":[70,185,160],getaddrinfo:7,jason:144,wanabe:126,"/cache":9,"\u57cb\u3081\u8fbc\u3080":170,query:[],"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u30fc":7,"_debug":180,"/\u65e5":188,"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea":[152,79,109,185],"-release":[],"\u3042\u3089\u308f\u3057":92,"\u4f59\u308a":152,"\u5f97\u308b":[85,9],"/request":104,"_database":[],"\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9":7,"-build":180,"\u306b\u3064\u3051":152,"\u512a\u308c":[133,85],".output":37,"\u76f4\u611f":144,"\u9665\u3063":7,"_header":96,"\u3001 \"":101,"\u9023\u643a":133,vmware:153,"_thread":170,"= n":152,"\u5f35\u308c\u308b":126,"\u4e2d\u56fd":76,"\u3002\u30ad\u30fc":109,"= y":126,"\u826f\u304f":[78,79],"\u826f\u3044":[79,125],nonexistent:109,"\u30ef\u30fc\u30ab\u30fc":9,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":[133,170,160],"0xc":175,"-dump":78,masatoshi:78,"\u306b\u5bfe\u5fdc":[42,109,80,23,122,94,183,98,16,7,114,37,194,28,59,113,54,81],"= \"":[109,23,152,81],"/tmp":[178,55],"_printf":81,"\u57cb\u3081\u8fbc\u307e":153,"\u57cb\u3081\u8fbc\u307f":[33,48],"\u3002adjuster":81,"\u30b9\u30b1\u30fc\u30d7":181,"/to":[9,55],"\u30ed\u30f3\u30c9\u30f3":76,"ci\u4e0a":82,"(ctx":[17,70,39,122,16],"\u771f\u306a\u3089":152,"\u53d7\u4ed8":[92,126],"\u5b8c\u4e86":[109,153,120],"'mroonga":[116,79],"\u30d5\u30ec\u30fc\u30ba":[],".pid":98,"\u5f35\u3063":[78,109,126],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[],"\u4e2d\u7a0b\u5ea6":[167,130,14,154,102,138],normalizer:[],"_previous":17,"[header":[91,143,50,10,146,60,63,169,66,22,69,27,23,166,74,173,118,128,177,134,136,137],normalized:134,"\u305d\u308c\u3089":[182,109,122,74,19,78,178,55,181],">max":4,"\u96c6\u307e\u3063":131,"\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0":126,"_malloc":41,"\u8d77\u52d5":[],"\u30e1\u30e2\u30ea\u30fc\u30de\u30c3\u30d7":140,twiter:7,"\u96c6\u307e\u308a":109,"\u30af\u30e9\u30c3\u30b7\u30e5":[156,126,7,60,78,28,81],"{prefix":[22,192,177,10],"\u4f7f\u3044\u65b9":[],"-za":132,"\u6295\u7a3f\u5834\u6240":188,msvc:78,gcc:[167,130,24,126,7,28,192],df:123,dd:[150,152,181],"\u30b3\u30de\u30f3\u30c9":[],"\u5186\u6ed1":153,"(score":78,"\u5f35\u3089":[7,13,122,126,78],"\u5f35\u308b":[185,152],"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6":81,"\u30b5\u30fc\u30d0\u30fcid":28,bind:28,lines:[132,180],"/meetup":78,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0":156,"\u7d9a\u304d":59,"\u306e\u3088\u3046":[109,23,185,96,126,17,60,160,181,85,81,152],"(cutter":180,"\u7d9a\u3044":[71,109],hiroshi:[28,156],jiro:45,"\u3002int":126,"\u7d9a\u3051":170,lf:182,"\u6d88\u8cbb":115,ld:85,lc:120,lo:85,ll:[71,91,85,145],euc:[98,192,85,126],li:[71,145,85],lt:[163,91,33,48],ls:153,"_gqpt":170,tsv:[],lz:192,"\u9589\u3058\u308b":[28,1,95],"\u306f\u3069\u3061\u3089\u304b":[185,152],"\u4f75\u305b":3,"\u3067\u3057\u3087":[164,152,131,133,115,60,192,81],dat:95,"\uff08world":46,"\u30c7\u30a3\u30b9\u30afi":66,day:[115,150],"\u30e6\u30fc\u30b6":[74,109,70,3,153,46,170,49,7,172,18,179],"\u4e00\u3064":[147,6,46,145,8,149,106,108,11,112,13,16,17,114,157,159,194,161,68,122,73,74,127,76,171,83,184,186,133,35,110,38,141],"\u70b9\u9593":93,"_persistent":[114,122],"\u5217\u5f0f":39,"& y":126,"& x":81,normalizerauto:[],"\u74b0\u5883":[],"\u5217\u5f15":70,"& b":152,"\u81ea\u4f53":[185,81],"/message":153,"\u30b5\u30f3\u30d7\u30eb\u30b9\u30ad\u30fc\u30de":[110,12,186,123,116,101,149],"\"sphere":171,res:[114,57,170,111],rep:170,"\u30ab\u30ec\u30fc":145,red:[],"/\u6708":188,frank:97,"\u73fe\u72b6":11,"\u4ed8\u5c5e":[37,9],"/aba":[75,3,131],"& (":152,"\u76ee\u8996":136,"\u30d6\u30e9\u30b8\u30ea\u30a2":76,"*top":111,"_long":[2,175],"\u91ce\u9996":81,"-appearing":12,"\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0":133,hex:45,"\u30d9\u30af\u30bf":[7,156,1,80,126],"\u7d44\u307f\u8fbc\u307f":[],monkey:13,"\u8aad\u307f\u8fbc\u3093":[69,175],"\u6c38\u7d9a":[],"\u8aad\u307f\u8fbc\u3080":[1,69],natty:28,acquire:19,documentations:162,"\u3068\u3088\u3044":192,"_unregister":[],"\u305b\u3044\u305c\u3044":66,"_illegal":2,"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":[],"\u5229\u70b9":133,interrupted:175,"\u81f3\u308b":13,have:[115,107,84],"=users":[9,55],"\"co":172,min:[],"_control":[78,2,175],"\u914d\u4e0b":[37,153],osdn:[78,153],"\u7de9\u548c":140,"_func":[41,54,81,16],"\u8aad\u307f\u8fbc\u307f":[22,69,3,126,10,28,178,81],"\uff08gnu":192,"/commands":[106,60,96,81],"_character":39,eight:3,"_offline":113,"\u306a\u3082\u306e":[122,153,181],"\uff09\u3002":71,"\u6e2c\u5730\u7cfb":46,"\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[7,18,66],request:[],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":[136,1,11,156,126,7,78,28,113,81],"\uff08least":118,"\u7d44\u307f\u8fbc\u3093":[133,81],"\u304b\u304b\u308a":[115,85,185,152],normally:[107,98,16],text:[91,4,12,95,46,7,55,109,111,152,116,23,123,170,78,79,181,185,33,136,137,140],"\u8d8a\u3048\u308b":[71,78,23,81],supported:[43,9],"\u5ea6\u3068":28,conifugration:82,"\u610f\u5473":[109,70,3,178,131,86,85,96,98,126,155,75,152,104,140,78,192,39,179,170,185],"\u5b66\u3093":188,"*table":[64,114,80,122],bernard:78,"\u4e00\u500b":70,"[mruby":[78,81],"\u65b9\u6cd5":[],")\u3059\u3079\u3066":97,"\u5c11\u306a\u304f":[185,133,125,33,115,140,78,152],"\u5c11\u306a\u3044":[109,185,115,160,178,81,152],"[column":81,"\u7e70\u308a\u8fd4\u3059":156,"_prepend":80,"\u306e\u307f\u3057\u304b":172,"_eval":[],"\u7e70\u308a\u8fd4\u3057":[170,152,120],"\u5272\u308a":[91,152,13,95,16,104,106],calling:[41,5],fixed:7,"_busy":[2,175],"\u5236\u5fa1":[],"\u3002blogs":71,we:129,"\u4ee3\u5165":[],writable:[],enhanced:43,terms:[123,165,3,185,12,127,71,163,109,98,33,48,47,116,140,152],xxxxx:153,"\u985e\u4f3c":[],pattern:[185,152],"{name":152,"(string":112,"\u30c7\u30e1\u30ea\u30c3\u30c8":95,progress:150,"\u6751\u4e0a":[78,126,81],"_incompatible":2,"\u5b66\u3073":[109,76,131],"\u7dad\u6301":[133,55],superior:33,sho:126,"\u5168\u4ef6":[64,185,152],"\"ddl":81,"\u518d\u8d77\u52d5":[],plugin:[],"-suggest":[],"_expression":[109,181],".org":[3,102,9,192,167,110,153,86,13,14,17,159,120,45,24,170,75,103,78,81,130,131,154,90],"\u88dc\u6b63":[],"\u628a\u63e1":125,otherwise:[41,80],comment:[188,79,186],"\"fulltext":91,"\u304a\u304d\u307e\u3057\u3087":13,"-history":28,"\u4e00\u6587":81,"\u4ee5\u524d":[71,188,126,7,13,78,28,193,81],"\u30ab\u30b9\u30bf\u30e0":9,"\u91cd\u307f\u4ed8\u3051":[71,109],"\u30e1\u30e2\u30ea":[],"\u5c0f\u6570\u70b9":13,"\u52c9\u5f37":85,json:[],"?argument":37,"\u91cd\u307f\u4ed8\u304d":[],copied:41,"\u901f\u3044":[95,81],"_end":2,"6\u3064":63,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":28,bulk:[78,39],finished:[150,104],"_domain":2,"=..":153,"\u5168\u4f53":[],value:[],"=arg":181,"\u540c\u3058":[],almost:129,"\u6307\u91dd":[],"(cve":81,"\u30bf\u30a4\u30df\u30f3\u30b0":[7,3],".db":[98,175,3,103,126],pkgs:130,"-endpoint":[132,65],optarg:[57,84],"\u67af\u308c":[142,191],receiver:[132,65],":!":185,"[api":78,"[apt":7,"\u672c\u4f53":89,"\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3":153,center:171,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30e2\u30fc\u30c9":126,builder:87,sets:16,position:[41,47,91,85,111],"*result":114,"1byte":175,"\"ellipsoid":171,"\u8868\u793a":[],"-platform":[],stores:39,"_byte":[2,175],"x\u30df\u30ea":[46,152],"\u5229\u7528":[],stored:[65,49],"\u30ad\u30fc\u30b5\u30dd\u30fc\u30c8":95,":<":[109,185],"\u958b\u59cb":[109,76,163,170,126,83,60,180,28,80,81],"\u300c\u5f0f":39,"_true":80,"\u3055\u3093":[131,140,156,33,148,126,7,172,55,78,28,181,113,81,120],add:[109,91,166,162,14,7,20,85,81,120],"\u3002gqtp":[182,2,175],"\u3055\u3089":79,match:[],tests:153,"|none":109,"\u5730\u57df":133,elapsed:[132,136,4,150],"\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5":[71,85],like:[129,98,9,122],success:175,"_leak":180,"_decr":80,"\u7f6e\u63db":[],"\u30af\u30a8\u30ea\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":55,works:[41,150],soft:140,"\u63d0\u6848\u7528":132,"\u4e0d\u6b63":[1,156,126,180,78,28,81,66],"((x":46,"\u30b5\u30fc\u30d0\u30fc\u30d7\u30ed\u30bb\u30b9":126,"\u8ca0\u8377":[156,9],"\u7121\u52b9":[109,185,124,98,126,7,114,9,64,78,192,113,179],"\u610f\u56f3":[185,186,126,7,116,79,81],tmp:[3,153,132,155,96,98,126,60,103,106,181,178,55,175],"_optarg":[78,57,84],sjis:[192,43,98],"\u30b5\u30de\u30ea":126,"\u5f62\u5f0f":[],",\"domain":131,"\u30d3\u30c3\u30c8\u30b7\u30d5\u30c8":152,"\u30d0\u30b0":[28,125,126],"\u3046\u307e\u304f":[],dcb:81,host:[170,181,98,103,175],"\u6319\u52d5":[],"\u30c0\u30e1\u30fc\u30b8":71,about:[41,136,12,123,36,98,17,20,150,29,162,82],actual:[9,12],socket:175,"\u3055\u305b":125,"\u4ee5\u5185":[188,75,18,152,179],"\u3055\u304d":13,"_time":[136,150],tomo:45,"\u3055\u3044":[142,2,3,144,129,95,46,47,26,137,7,146,91,102,103,104,10,149,110,192,55,167,109,76,152,153,86,13,155,14,71,60,19,25,96,66,22,120,69,27,180,24,168,169,170,126,74,186,75,173,118,140,78,128,177,81,181,130,185,131,133,134,116,154,188,37,90,85,9],introduced:9,"\u524d\u65b9\u4e00\u81f4":[],"!!":[59,45,85,9,188],"\u6307\u3059\u5024":64,"\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7":153,"!)":9,cleared:137,dataset:[132,65,190],"_object":2,guard:123,"\u30ec\u30fc\u30bf":7,rch:91,">default":4,"\u901f\u5ea6":[45,95,170,126,78,28],"\u7591\u554f":79,glib:126,"_inappropriate":2,"[power8":81,but:[12,123,98,132,128,65],"\u3068\u3068":[88,120],"\u3068\u3069":51,"\u3068\u306e":152,"\u3068\u3063":9,"\u30fb\u5168":157,buf:[114,80,122],bug:[7,43],"\u5730\u56f3":133,"-w":153,dangerous:[137,84,122],"\u3068\u3057":[46,98,49,9,109,76,152,13,16,115,18,45,69,70,170,126,172,79,178,179,81,182,85],"\u3068\u3048":[109,11,133,124,145,33,48,85,75,140,78,192,39,81,181],binlib:153,"\u3068\u304d":[1,91,3,46,145,98,49,7,9,10,78,192,54,55,167,109,76,152,153,86,13,155,14,16,116,114,18,160,64,66,22,45,70,121,135,125,126,74,172,175,28,177,178,179,81,181,130,193,185,131,133,156,33,136,154,188,140,90,85,103],"-disable":[132,28,156,81],"!\\":152,epel:[7,130],"\u76f4\u3057":140,pid:[1,192,98],"\u8a08\u7b97":[93,1,76,152,112,133,46,109,49,7,75,18,126,146,140,171,179,81],"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3":[156,192,153],"-config":[1,156,98,7,28,192],saer:[155,18],"\u4f7f\u3044\u5206\u3051":[71,145],pip:20,"\u30c1\u30a7\u30c3\u30af\u30b5\u30e0":153,"\u305f\u3060\u3057":[1,185,145,98,126,74,61,37,64,28,181,81,152],"\u305f\u3060\u3051":7,"\u6291\u5236":[7,126,81],detail:170,"\u3068\u308b":80,"\u4fc2\u6570":[109,70],"\ufffecrch":91,"\u306b\u3064":7,"\u3068\u3082":[109,185,168,170,33,186,75,140,78,152],"_vars":41,"\u30b0\u30eb\u30fc\u30d7\u30ad\u30fc":109,"\u306e\u3044\u305a\u308c":[96,92],"\u307b\u3069":[142,3,13,155,85,66],cpu:[132,133,170,9,192,55],"\u5909\u3048\u308b":[71,109,85],"\u307b\u3046":81,"\u307b\u304b":[13,133],"\u2026\uff09":18,"4e":168,"|ro":109,"\u3002groonga":[3,4,5,95,7,102,9,72,192,167,109,11,152,14,170,126,74,79,179,81,181,83,130,185,133,154,140,89,103],"\u6e1b\u3089":[7,95,18,92],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9":64,tweet:115,umask:81,"\"ab":172,under:[132,9,65],"-ci\u4e0a":126,"\u3067\u3064\u306a\u3052\u308b":109,"\u904e\u7a0b":61,"\u3002google":185,"/plugins":[22,177,156,126,10,192],"\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3":[28,126],"\u5b9f\u6570":46,"\u6761\u4ef6\u5f0f":[],"\u6700\u9577":[28,170,152],"_snip":[7,81],"\u63a5\u8fd1":70,"-repository":[7,14,153],estimates:111,"[http":[7,78,126,81],"\u7b87\u6240":[136,33,153,126],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":[28,126,81],"\u4e00\u8a9e":71,"\u5b9f\u65bd":153,"\u81f4\u547d":7,"-rpm":153,"-idf":[123,12],"\u7d44\u8fbc":[68,147,112,6,46,73,171,184,74,35,8,157,141,159,161,194,106,38,83,127,108],"=largetable":104,"\u683c\u7d0d":[],"\u53cd\u8ee2":152,"\u30e2\u30cb\u30bf\u30fc":[154,130,14,167],"\u9069\u7528":[],"\u3002output":[159,81],studio:[7,78,102,126],path:[],"\u95a2\u4fc2\u5f0f":[],".ddl":170,"_scorers":12,"_key":[],"\u79cb\u8449":75,changed:[43,9],"\u5f62\u614b":[133,192,85,152],"\u6e1b\u3063":78,"\u58ca\u308c\u308b":[1,156,126,7,28,81],"\u63a8\u79fb":11,"\u3082\u3063\u3068":109,"-ci":[126,81],"\u30d3\u30eb\u30c8\u30a4\u30f3":126,"\u8fd4\u5374":[106,109,3],ts:85,"\u8aad\u307f\u3084\u3059\u3044":113,"/munin":192,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":[140,126],noarch:[167,130],m6:24,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id":121,namebuf:[80,122],autogen:[7,153,120],"\u30a2\u30e1\u30ea\u30ab":76,"_jis":[192,85],"-bind":[7,28,98,78],must:[41,111,84,132,49,137,39,65,122],me:[77,85],"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[],"\u7f6e\u304d\u63db\u3048":[98,185,81,120],mb:7,mm:[150,152],ml:125,"\"blank":193,strerror:81,mv:194,install:[],my:[109,185,152],"/xml":55,"_idf":[],"\"s":[91,155,18,85,179],"/logical":[],end:[182,163,4,175],eng:[155,179],vagrant:153,"\u3002functions":180,"\u30d7\u30ed\u30bb\u30b9":[],env:178,rroonga:[12,186,126,17,116,101,160,149,79,81,82],"\u30b4\u30df":[28,156,127],"\u7d42\u4e86":[],description:[188,145,166],"-devel":[167,130],"\u5c0f\u3055\u304f":[76,95,115,55,140,78,171,81,181],".tar":120,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[],"-files":[],"\u5c0f\u3055\u3044":[109,70,185,95,148,64,171,85,66],".tag":109,"]isk":181,"\u5272\u308a\u5f53\u3066":[17,156],"/tab":78,"\u4e88\u5b9a":[69,11,86,88,33,76,146,28,55,181],executed:103,"\u7acb\u3061\u4e0a\u3052":170,"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":70,"\u305f\u304f":[131,126,33,172,140,28,181,55,120],"\u5bfe\u8c61table2":114,"\u5bfe\u8c61table1":114,"\u305f\u304b":[28,109,18,104],"@packages":153,gqtp:[],"\u305f\u3073":[75,11,170,153],"\u52d5\u304b\u3057":140,"\u305f\u3060":[167,86],"\u8fd4\u308a\u5024":[78,126,81],"\u300chello":109,"\u4e00\u884c":[170,156,98],"\u3072\u308d":144,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":[],"\u3072\u3089":[179,85,185,152],"\u7dcf\u91cf":140,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":118,"\u3054\u3089\u3093\u304f":105,"2\u3064":[0,142,3,96,49,55,167,109,112,14,116,66,50,126,74,186,78,79,81,181,130,185,131,188,154,85,195],each:[132,36,49,18,9,155,150,39,179],searc:179,signing:153,"\u3002\uff08":[93,95,46,145,98,48,49,104,109,152,16,18,160,64,120,127,28,179,82,185,156,33,140,85],"\u3002\uff09":[93,1,145,185,120,95,109,33,48,49,18,104,64,28,82,85,156,152,66],"(byte":[114,122],"\u6e96\u62e0":[9,126],goo:[185,152],msgpack:[4,175],"\u30da\u30a2":[109,92,13,49,172,18,178,179],newly:[128,33],"\u3002centos":78,"\u4f59\u8a08":125,provide:[132,12],"\"(":[92,126],free:[150,127,156,81,16],"\u305f\u308a":[109,94,133,46,160,125,142,95,89,181,81,66],"\u305f\u3089":[109,104,5,186,156,125,142,97,116,152,55,62,153,78,192,85,179,81,120],"\u30ab\u30e9\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":60,freq:49,"\u958b\u653e":78,"\u305f\u3081":[],"\u53e4\u304f":81,"\u53e4\u3044":[],"_locked":80,filter:[],rand:[],already:[41,19,65],"\u53ef\u5909":[28,96,38,175],"\u897f\u66a6":152,top:[28,111,35],"\u30d6\u30e9\u30a6\u30b6":[192,103,153,120],".groonga":[120,130,153,167,24,14,170,154,102,192,90],too:[78,79,175],tom:116,tood:41,"_pragma":109,tool:82,serve:153,wareohji:7,".com":[3,153,131,13,75,103,105,120,82],"\u6d0b\u723e":28,"\"good":[109,152],"_untag":[],expr:[80,39,54,119],"*cursor":111,obata:156,"_isspace":41,"\u8d64\u9053":76,ram:170,"\u6709\u3057":96,"\u5834\u5408":[],"\u5f93\u3063":[109,114,64,37,57,55],"\u4e00\u89a7":[],"_source":153,hanako:173,"\u591a\u9762":133,"> y":126,"/stop":[165,47,159],"\u5f93\u3046":156,"/share":[28,98],"\u3044\u307e\u305b":[93,109,91,178,195,95,185,126,55,136,9,155,152,181,85,130,81,66],bsd:[78,192,81],"\u3072\u3068\u3064":[7,185,112],"\u30b5\u30b8\u30a7\u30b9\u30c8":[],"\u30ed\u30fc\u30de":179,"> \"":78,".roonga":[185,152],"\u30ed\u30fc\u30c9":[],"\u30ec\u30b3\u30fc\u30c9":[],marverick:156,"\u307f\u306a\u3055":70,pkg:[24,156,192],"\u5ea6\u8868":156,"\u5c0f\u6570":[],"\u6c42\u307e\u308a":133,"\u3002hook":94,"\u306b\u3064\u3076\u3084\u3051\u308b":125,"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf":70,"\u59cb\u307e\u3063":[136,172],neologism:85,"_valid":9,fontaine:28,"*fin":54,"\u3064\u3064":[71,116],"/example":12,watch:153,"\u306f\u307e\u3068\u3081\u3066":153,"\u3064\u304d":[67,69,110,86,109,74,118,146,178,81],"\u3064\u304b":148,"\u3064\u3044":188,"\u7d50\u679c":[],hendro:126,"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[],"-per":[132,28],"_with":[144,145,114,122,152,66,185],"\u3064\u3051":[109,76],nul:[41,28,85,84],"-commnad":11,ciritical:9,"\u5bfe\u8c61cursor":[64,121],"_for":[78,70],"\u4e8c\u3064\u76ee":70,"\u30d7\u30ed\u30b0\u30e9\u30e0":[152,96,156,7,9,89],"\u56db\u6368":28,"\u30d7\u30ed\u30bb\u30b9id":175,"\u30b5\u30fc\u30d0\u30fc":[],"\u59cb\u307e\u308a":153,"\u59cb\u307e\u308b":[109,185,178,170,74,172,114,61,55,85,179,81,152],news:[],"\u884c\u6307\u5411":133,"\u3068\u3057\u307e\u3057\u3087":[79,92],extracts:39,"\u30e9\u30f3\u30c0\u30e0":75,"4gib":[95,175],"\u65b9\u5411":64,"\u591a\u91cd":182,"\u5f8c\u304b\u3089":159,"\u7d4c\u7def":[13,46,75],"/or":137,trust:153,"\uff13\u3064":46,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0":170,"\u7b49\u3057\u3044":[109,70,185,80,152],"\u7b49\u3057\u304f":[70,185,152],"&lt":[163,33,48],been:153,"\u30a8\u30e9\u30fc\u30ed\u30b0":142,"_blog":79,"\u8d77\u6e90":13,"/shutdown":[98,9,55],tokenmecab:[],"\u5217\u60c5":91,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[],msec:19,xxx:[78,98,126,152],"_not":[109,2,137,60,173,175,104,128,57],"\u6700\u9069":9,"\u7528\u9014":[167,109,86,133,14,126,136,154,102,142,138,95,130,81,181],"\u6728\u4e0a":64,"\u4fee\u6b63\u4e2d":18,"\"d":85,"\"e":[155,91,85,179],"\u3070\u3059\u3079\u3066":85,"\"a":[186,109,91,81],"\"b":[186,109],"\"c":[186,109],"\"n":[136,109,3,185,175,83,9,152,103],"\"o":85,"\"h":91,"\"i":[136,165,185,188,109,115,79,152],"\"k":45,"\"t":[91,85],"\u5c1a\u4e5f":126,"\u4e0a\u304c\u3063":85,"\u81ea\u8eab":[7,28,91,98,178],"\"}":[144,49,101,9,149,55,59,109,152,13,155,115,116,18,159,45,165,23,123,186,75,173,79,179,181,185,131,193],"-\"":47,"\"x":[126,81,152],"\"@":188,"\u691c\u7d22\u4f8b":[],suggest:[],"\u30bf\u30fc\u30df\u30ca\u30eb":9,niku:81,"\"\\":181,"\"]":[45,109,3,152,86,71,188,96,98,33,159,149,78,179],"\"_":[3,92,12,96,47,49,101,9,149,110,128,55,144,123,115,109,76,152,86,13,155,59,116,60,18,159,45,165,71,126,186,75,173,97,79,179,181,185,131,188,136,193,103],"\"[":[7,181],"\"%":181,"\"'":[109,23,185,86,71,145,126,7,181,81,152],"\"\"":[186,46,113,152,181],"\"#":28,"\",":[3,92,12,96,98,47,48,49,101,9,104,149,106,128,144,123,115,109,76,152,86,13,155,59,116,60,18,159,45,165,71,163,170,126,127,75,173,175,97,79,179,181,185,131,186,188,33,136,110,193,103],"\"-":[28,76],"\".":[123,152,131,12,129],"\"/":[96,98,75,60,106,85],"\u4e8c\u756a":109,"\")":[45,76,152,112,124,116,126,7,35,75,101,104,97,78,81],"\"*":7,"\"<":[163,126,48],"\">":[163,4,48,33],"\"?":[109,4],"\":":[91,3,4,12,98,69,48,49,47,146,101,9,104,149,110,128,55,92,115,109,76,152,86,13,155,59,116,60,18,159,144,45,165,27,23,123,163,169,170,83,127,75,173,175,97,79,179,181,185,131,186,188,134,193,85,103],"\";":[170,9,55],"\u78ef\u90e8":126,charlie:188,"\u9054\u6210":23,"/run":[98,153],"\u3084\u3059\u304f":[156,81],"\u3084\u3059\u3044":[1,109,48,33,160,78],"(term":[123,12],"\u5bfe\u8c61table":[64,114,80,122],"_tags":[45,188],"_ctx":[],"\u4ecb\u6587":188,"_buffer":[87,2,175,16],".scr":170,"*bottom":111,"/scorer":12,"_selector":[],"5f":170,"5c":83,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":[],ceekz:126,"\u30ab\u30e9\u30e0\u30d9\u30fc\u30b9":[185,152],descending:78,advanced:43,"\u542b\u3080\u5168\u3066":60,"\u5c0f\u6587\u5b57":[64,91,3,193,66],"-client":129,poedit:120,"\u6b63\u3057\u304f":[185,126,7,78,179,81],"\"engine":[18,179,49],"\u6b63\u3057\u3044":[78,18,178,185,172],"\u7d20\u89e3":[133,192,85,152],"\u307e\u308f\u308a":89,"\u672a\u5b9a\u7fa9":81,successfully:41,"_str":[188,39],jennifer:144,escape:39,"\u73fe\u4ee3":133,tutorial:41,".zip":120,"_right":[28,111,35],".github":120,allocate:[],ahost:181,core:170,deleted:80,"\u30d0\u30c3\u30c1\u30e2\u30fc\u30c9":7,night:[115,92],"\u3001\u300c":[45,1,131,71,145,98,109,75,85,179],"\u6d88\u3048":95,shards:[],"\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":[7,3,81],ppa:[],"\u3002ascii":[185,152],"\u3092\u3054\u89a7\u304f":133,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":106,two:[150,9,65],"[@":[7,28,126,81],git:[105,153,120],"[{":[9,55],"[a":132,gib:[67,140],"[test":7,"\u3084\u307e\u306d":[126,81],"[n":[126,81],head:[182,175,81],"_interrupted":[2,104],")senna":178,"\u6253\u3061":23,removed:10,"\u6253\u3064":153,"[2":98,"\u9032\u6570":[127,152],versions:142,"[:":103,"[#":[7,28,113,81],"[\"":[45,109,152,86,13,188,96,33,71,155,149,78,179,127],autoconf:28,"\u5185\u8a33":71,"[,":171,"/docs":9,"\u8abf\u3079\u308b":[35,171,126,168],decrypt:153,"(match":116,"_ip":[103,175],check:[],ongaeshi:[7,78,156,126],"\u305f\u304b\u3063":[18,92],no:[1,43,95,109,126,111,175,159,155,78,181],"/mxcl":153,when:[84,129,132,98,20,122],ne:91,ng:91,ny:188,"\u5217\u6319":3,"\u6ce8\u8a18":126,tid:121,saerch:[155,18],nt:85,"\u4e09\u756a\u76ee":152,node:153,"\u5024\u3054\u3068":131,"=number":[],"_touch":[156,84],"_unlock":[41,80],flushes:[],sql:[23,131,12],longer:43,"\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8":127,"\u672c\u756a":153,"_memory":[],"\u4e00\u8cab":125,backward:128,jsonp:[132,28,78],llt:91,"\u30d0\u30c3\u30d5\u30a1id":127,"\u30d2\u30c3\u30c8":[109,70,144,71,188,145,126,115,179],"\u3084\u308b":[],"_same":126,"\u4e00\u822c":[109,3,185,133,17,160,80,85,82],environment:82,"}attr":126,"*tid":121,advantage:33,"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30c6\u30fc\u30d6\u30eb":[185,152],"=get":47,enqueue:135,"6elz":81,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":38,level:[41,6,98,8,9,150,65,175],"\u8208\u5473":[133,181],brother:185,"/db2":55,"/db1":55,fbnteqr:78,slower:[123,12],"\u6d88\u305b":9,obsolete:142,"\u6f14\u7b97\u5b50":[],"\u79d2\u8868":[13,71,75,152],"\u6c42\u3081\u308b":[133,76,131,171],"\u66f8\u304d\u5f8c":145,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":153,"\u3044\u308d\u3044\u308d":[],"\u30d5\u30a1\u30bb\u30c3\u30c8":109,"/load":[69,9,55],"\u56f0\u3063":125,".builtin":84,reply:79,"/test":85,"3\u3064":[109,23,131,13,163,33,126,136,60,160,3,79,180],"\u751f\u3058":[147,6,73,8,157,194,108],baseball:[45,79],"\u9ad8\u6a5f":[133,70],"=groonga":[132,9],"\u6c17\u8efd":[125,81],"\u6b63\u78ba":[13,83,3],"\u63d0\u4f9b":[],"_success":[41,109,2,84,5,16,17,19,150,39,122],"-pgp":153,"\uff08ruby":82,"\u64ec\u4f3c":[],"\u9006\u306b":[45,188],"\u30ea\u30f3\u30af":[109,185,153,13,126,7,105,78,81,152],"_delete":[94,114,78,64,28,80],"\u30b3\u30cd\u30af\u30b7\u30e7\u30f3":78,"\u307f\u307e\u3057\u3087":[45,109,23,92,131,13,188,75,3,79,152],"\uff08messagepack":192,vivid:[78,14],"-src":[154,153],sports:45,"\"name":116,"\u76f8\u5fdc":114,memory:[],msg:[78,135],outputs:[150,65],"_concurrency":182,cases:[123,12,129],"\u30bb\u30c3\u30c8":[47,70,145,114,64,80,108],"\u3044\u308f\u3086\u308b":45,"*dest":114,"_asc":114,".txt":[85,153],"\u30b9\u30b3\u30a2\u30e9\u30fc":[],"/io":[],"/in":78,"\u672a\u4f7f":81,"[tag":109,"\uff11\u3064":[96,135],"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":[182,142,126,101,9,78,81],"/setup":82,"_sis":[144,145,185,114,66,152],"!condition":152,"-docutils":153,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":[],":clear":153,shibuya:156,"\u76f8\u5f53":[136,75,3,131],"\u5f15\u304d\u8d77\u3059":[7,126],clone:[],"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":82,crashed:137,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30e2\u30fc\u30b8\u30e5\u30fc\u30eb":85,"\u7f72\u540d":[],quetzal:7,succeeded:[74,137,60,173,128],ueno:[7,156,148],"\u8efd\u3044":60,"\u30b0\u30eb\u30fc\u30d7":[],subrecord:126,"\u3002tag":45,"_res":170,"/srpm":153,"_descriptor":[2,175],"\u542b\u307e\u308c\u308b":[109,70,3,153,13,133,163,98,48,71],"\u56f2\u307e":[33,48],"\u56f2\u307f":[163,98,33,48],"[[":[144,12,98,69,48,47,104,146,106,128,109,76,152,86,13,115,116,60,45,165,23,71,163,173,79,179,185,132,188,33],"\u30d9\u30fc\u30b9\u30d1\u30b9":9,"_pass":9,"\u56de\u7e70\u308a":170,cutter:[],"\u89e6\u308c":3,"\u6ce8\u76ee":[109,131],"\u3059\u306a\u308f\u3061":13,term:[92,12,127,123,74,187],name:[],"\u500b\u3005":[11,143,166,71,70,63,23],"\u65e5\u3005":125,"\u534a\u7121":[28,66],"\u5bfe\u8c61column":122,"\u53d6\u308b":[152,175],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d2\u30c3\u30c8":126,"\u30cd\u30b9\u30c8":[7,78,79,126,81],"\u30d1\u30fc\u30b9":[28,124,39,160],createfilemapping:78,exclamation:78,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":73,"\u6642\u4ee3":133,"\u3042\u3044\u307e\u3044":66,"\u60aa\u610f":152,libstemmer:81,"\u7d14\u7c8b":85,"-default":[],"=unique":104,"\u56f2\u3093":152,"\u914d\u7f6e":[3,153],"\u56f2\u3080":[3,33,126],"\u3002key":[114,145,3],"\u30b3\u30fc\u30c9":[78,91,126,81,120],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b7\u30a7\u30eb":185,"\u4e92\u63db":[167,130,11,152,153,14,134,154,55,37,78,81],turn:9,"\"element":86,"\u30db\u30b9\u30c8":[182,153,98,170,7,175,28],yum:[7,167,130,153,20],"\u5b8c\u7d50":125,sentense:78,"-normalizer":[167,130,14,134,7,154,193],"\u304a\u9858\u3044":[170,125],origin:120,fetched:49,"\u30de\u30fc\u30af\u30a2\u30c3\u30d7":78,redhat:[28,192],"-version":[],"\u3002geopoint":188,"\u30b7\u30f3\u30d7\u30eb":[195,131,160],"_function":[41,2,12,175,104,78],array:127,"\u7d5e\u8fbc":[],"\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":[76,118,160],returns:[41,111,122,132,114,128],"\u3084\u307e\u3060":81,releases:5,kbytes:170,"\u30d1\u30a4\u30d7":74,"\u30a8\u30f3\u30c8\u30ea":[109,152,185,17,186,122],specify:[12,132,98,190,137,9,65,120],"-httpd":[],"(tab":178,require:12,"(tag":101,"< t1":70,"\u3080\u308b\u3093":[185,152],posix:[78,152],"\u300cnippon":179,pre:43,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30a4\u30ba":67,"_local":170,ann:153,"_groonga":136,enourmous:49,"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u30b9\u30af\u30ea\u30d7\u30c8":82,any:[98,12],"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":[],takuto:156,"_permitted":[2,175],"\u30d5\u30e9\u30b0":[1,91,3,144,6,96,100,7,8,147,108,109,152,86,13,194,16,157,64,66,73,74,127,175,28,113,81,181,185,134,193],animation:45,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":[25,109,192,98],multiple:[132,129],"_suggest":148,"_down":[2,175],removep:80,"\u81a8\u5927":133,"\uff09:":[167,69,145,24,14,130,154,146,90],"\u4e2d\u65ad":[7,28,94,81],geoindex:[],later:98,"\u5c06\u6765":[69,76,23,86,134,126,169,27,175,146,55],"\u4e00\u81f4":[],"\u7551\u30b1":[78,81],"\u547c\u3076":[7,78,180,5,160],"\u5ea6y":46,sitecountry:[103,131],"\u540c\u3058\u91cd\u307f":116,"\u88dc\u5b8c":[],"\u30d1\u30c3\u30b1\u30fc\u30b8":[],"\u5024\u3088\u308a":[109,70],"\u7530\u8fba":126,"_json":107,"\u985e\u7fa9":109,explicitly:20,"\u7551\u30f6":81,"\u5f53\u8a72":[11,80],"(tags":149,define:[],ssh:153,"\"null":7,"_port":170,":')":74,tokenfilterstopword:[],"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":145,bison:153,mapped:[],ignored:[7,84],"\u30b9\u30b3\u30a2\u30fc":[],"\\\\\\":181,replies:79,"\u884c\u756a":[136,28],"_suffix":[28,78],connections:98,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":[188,1,66],"_lexicon":78,invoked:[],"<gqtp":170,managing:84,"\u77ed\u7e2e":78,"\"#\"":170,"(..":126,"_tokenize":[],"\\\\a":85,"#{":150,cities:76,come:188,"[(":181,"\u9577\u6642\u9593":[104,62],"\u30af\u30ea\u30fc\u30f3":153,quiet:175,"\u30ec\u30b3\u30fc\u30c9id":[],"\"#{":152,color:193,whombx:126,"\u30c6\u30fc\u30d6\u30eb\u30d7\u30e9\u30b0\u30a4\u30f3":7,period:[],"\u6a19\u8a18":81,"\u76f8\u5bfe":[28,109,153],"_clone":153,openbsd:78,raring:[126,81],"#proxy":9,"\u5f8c\u4e8c":11,"*db":[80,84,16],"\u6709\u9650":109,"\u4ee3\u308f\u308a":[193,175,185,163,98,33,48,102,9,181,192,85,66],engine:[91,12,123,155,163,33,48,49,172,18,179],"/vdw":[75,3,131],"_tokenizer":[],"_value":[],"_tokenized":[91,134],"case":[41,123,65,12,10],"\u25cb\u25cb":125,"\u30ed\u30ae\u30f3\u30b0":16,shops:145,"\u975e\u63a8\u5968":7,"\u53d7\u3051":[76,3,92,175,126,7,9,104,97,78,81,135,55,152],"\u305f\u3068\u3048":71,saerc:[155,18],"\u8aad\u307f\u51fa\u3057":133,archive:[],html:[],"\u5831\u4ee5":91,"\u516c\u5f0f":[28,130,167,116],messagepack:[],"\uff08romaji":179,status:[],downloads:102,"[\u8a9e":127,"\u7d4c\u7531":[74,147,153,6,170,156,73,7,127,8,157,141,159,161,194,106,38,83,81,108],modes:98,"-jemalloc":81,without:[49,9,33],model:98,"[geo":[28,126],"\u30d1\u30bf\u30fc\u30f3":[136,78,181,185,152],"/unit":180,"4kib":78,"\u4f5c\u6210\u6e08":98,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[],unicode:[78,193],"\u3088\u304b\u3063":71,"\u5408\u7406":85,"\u53ef\u5426":3,"\u5c11\u3057\u9055\u3044":109,"\u3002\u3056\u3063\u304f\u308a":86,blog:[71,186,79,3],"\\'":[98,185],"\u63a2\u3057":[133,109,85,170],"\\\"":[110,163,145,33,48,59,186,39,181],"\u9577\u65b9\u5f62":28,hino:126,"\u63a2\u3059":[79,85],"\u3002point":[35,171],"\u30ab\u30fc\u30cd\u30eb":140,"/base":153,"\\\\":[85,163,39,186,181],")..":153,"\u4f1d\u7d71":133,"\u3068\u304a\u308a":[13,67,75,170,131],"\\u":85,"\\z":[85,181],"\\a":[85,181],"\\n":181,"*mutex":41,"_send":[17,107,16],"-mm":[150,152],"_host":170,"\u53f3\u8fba":[28,156],"\"groonga":[109,152,86,33,172,186,159,66],frees:41,automake:156,"[snippet":[33,81],"@uzulla":28,"_unlink":[80,16],mooz:28,"\u4e09\u3064":[76,145],"/eval":146,"\u5f0f\u96c6\u5408":181,inspect:78,"\uff08personal":[],"\u30b9\u30da\u30a4\u30f3":76,nosuchfileordirectory:[],tokenbigramsplitsymbolalpha:[],oo:[95,91],on:[41,43,84,12,123,163,98,33,48,132,114,91,9,111,80,29,107,187,55,120],om:85,ok:173,of:[41,43,12,98,48,49,7,9,150,54,111,155,16,114,20,65,122,123,163,127,29,186,132,188,33,190,137,140],"_escalation":[],"\u30e6\u30fc\u30b6\u30fc":[],"\u8a2d\u5b9a\u5024":[168,1],os:[],or:[41,92,12,98,101,104,150,107,109,111,116,114,122,123,75,175,128,178,81,185,84,132,137,85],tokentrigram:[],"_leading":109,"\u5c11\u306a\u3051\u308c":66,"\u5f0f\u5168":[185,152],"\u884c\u76ee":[136,170,153],"\u8a66\u3059\u4f8b":85,"\u30c1\u30e3\u30f3\u30af":[78,127],libmecab:[154,14,153],"{path":192,"\u8a55\u4fa1":[70,152,185,126,186,146,181],there:[142,129,98,185,86],stateful:129,"\u53d7\u3051\u53d6\u308a":[70,3,9],strict:81,"\u300ccomments":188,"/modules":[156,9],"\u901a\u308a":[93,91,12,96,48,49,101,110,149,106,192,123,109,76,152,153,155,14,116,62,107,181,66,23,159,71,163,186,173,97,79,171,82,185,134,33,140,85],"*escaped":39,"_flush":[],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d7\u30b7\u30e7\u30f3":193,"(location":[45,75,76,188],faster:129,datasets:190,":set":81,"\u69cb\u7bc9":[],"\u8a9e\u7528":85,"\u4f5c\u3063":[131,71,114,9,64,28,193,179],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[],"/hostname":[170,98],"\u30de\u30fc\u30b8":[7,120],"\u65b9\u5f62":[76,171],"\u5927\u6587\u5b57":[3,81,66],"\u30d0\u30a4\u30c8\u30b7\u30fc\u30b1\u30f3\u30b9":126,"\u4f5c\u308a":[18,140,79,179,81,66],"\u4f5c\u308b":[45,109,92,86,188,135,152,18,181,160,140,120,81,66],"\u30de\u30fc\u30af":85,"\u8ab2\u7a0b":126,gettext:[120,20],"\u3066\u3057\u307e\u3044":125,"\uff08proc":94,"_type":[],ftp:[170,153],includes:[123,78],included:123,"\u53d7\u3051\u53d6\u3063":133,"\u3002ctrl\u30ad\u30fc":3,"\u30ea\u30bd\u30fc\u30b9":[17,115,81,5],"\u65b9\u5f0f":[133,79,3],":mm":[150,152],"/usr":[192,98],"\u6c17\u306b":[96,80,23,120],"/select":[9,104,103],directory:[41,132,65,175],"4\u3064":[95,98,33],"+or":181,"-threshold":[],migrated:[109,185,152],"/sysconfig":142,dist:153,"\u7d1b\u3089\u308f\u3057\u3044":181,executing:[132,16],"\u6761\u4ef6":[],disk:181,ptr:41,"\u8fd1\u3044\u9806":93,jessie:[],"\u30d3\u30c3\u30c8":[],"\u5b58\u5426":80,"/rab":[75,3,131],init:[7,192,54,81],program:[132,98,65],"\u5b9f\u7528":81,".name":[127,186,188],"[logical":78,"[travis":126,"\u95a2\u9023":[],"=message":[],"-word":109,systemctl:142,"***":8,",\"tags":45,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9":[28,153],"\u8a9e\u7248":153,and:[41,43,12,98,47,49,9,150,107,29,109,111,152,116,114,19,20,65,165,122,123,126,75,78,79,80,81,84,132,33,190,137,140,39],"\u30d3\u30c3\u30b0\u30a8\u30f3\u30c7\u30a3\u30a2\u30f3":81,longtext:[46,111],list:[153,65,190,20],"_html":[],"\u304a\u3088\u3073":[3,153,13,133,98,7,192,54],"\u4f4e\u6e1b":[142,156],"\u6d69\u4e8c":7,"<protocol":98,"\u89aa\u5207":156,"{key":109,"\"message":[123,181],yappo:[43,126,81],"\u884c\u3048\u308b":[7,45],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":[],"/news":153,tex:91,"/centos":[130,142,153],"_scalar":[92,12,96,47,48,101,110,128,109,76,152,116,115,71,60,159,45,165,23,122,123,163,74,186,173,97,79,181,185,131,188,33,137,140],will:[41,123,80,98,129],"(packages":153,sub:[],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":[],sum:[109,81,12],"*section":122,row:33,memcached:[],"\u3042\u308f\u305b":140,tags:[45,109,86,96,101,149,106,66],"_controllen":78,"\u88dc\u5b8c\u8a9e":179,"#worker":9,serihiro:7,"\u6163\u308c":131,allows:33,matsuu:156,"\u65b0\u65e7":78,options:[],gtihub:28,tokenunigram:[],ocelot:[28,126],"\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":153,"\u300c\u697d\u3057":145,"/atv":[75,3,131],"\u7a32\u7530":126,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9":[83,141],"\u7a4d\u7b97":[109,70],"\u3002ruby":181,"_expire":80,"\u3072\u308d\u3086\u304d":144,"\u305f\u3051\u3069":109,known:12,"\u547c\u3093":[109,131,145,81,5],"\u3002git":153,"\u30d7\u30ed\u30f3\u30d7\u30c8":4,"\u524d\u63d0":[],"\u89e3\u6790":[],"\u79fb\u884c":[28,11],"_encoding":[],"\u306e\u306b\u5bfe\u3057":16,"=table":66,"\u671f\u5316":[7,16],"\u30ea\u30cd\u30fc\u30e0":28,grndb:[],"\u958b\u767a":[],"\u7406\u7531":[],">\u529b":8,recursive:[],rather:[123,29,12,129],"&..":103,overcommit:140,disable:[132,28,9],"_text":[134,39,180,81],"\u30ea\u30dd\u30b8\u30c8\u30ea":[],therubyracer:153,"-max":[132,28,98],"\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":180,"-munin":[],"-http":[],specifying:[41,12],"\"book":152,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":[],"\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf":153,"\u9ad8\u307e\u3063":133,disables:[9,20],developed:165,disabled:150,"\u623b\u308a\u5024":[],"\"is":13,"\u30bf\u30a4\u30d7":[109,94,170,78,28,55],"_link":[2,175],"\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf":119,soccer:45,"\u30d6\u30fc\u30ea\u30a2\u30f3":46,"_large":[2,175],"return":[136,150,5,16],"\u52d5\u4f5c":[],"\u6d45\u898b":126,"|info":181,"\u5897\u3048":[146,79,91,181,86],"\u8a71\u984c":26,"-encodiong":152,innodb:133,"_enable":78,"\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3":9,"-create":[],"\u5897\u3084":[78,86],weight:[109,122,12,86,13,7],generation:20,"_release":153,"/en":[9,153,20],"\u56de\u9001\u308b":104,errror:181,"_ruby":78,"\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc":14,"\u6c42\u3081":[133,112],"_new":[7,28,135],"/managers":[9,55],"_chunk":78,"\u3072\u3053\u3055\u3093":[7,81],generate:[41,20],thread:[41,84,135,170,137,114,150,122],"\u9855\u8457":85,"\u306b\u3088\u308b":[],"_hash":[],"\u30ab\u30b9\u30b1\u30fc\u30c9":[],"\u5927\u304d":[86,95,7,127,9,140,66],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":81,"\u5e03\u6559":89,"${":[109,152,116,140,120,181],"\u518d\u3073":81,gpl:43,passes:153,"\u5b58\u5728":[1,3,145,142,7,9,104,109,171,16,114,61,159,64,168,170,126,75,175,97,78,79,80,81,131,133,156,136,35,85],script:[],gpg:153,"\u3050\u3088\u3046":76,"\u60c5\u5831\u540d":106,passed:[84,153],store:[111,39,16],gps:133,"\u8a9e\u691c":109,option:[132,150,98,65,20],"$(":[167,154,130,14,90],"/synonyms":178,"[bernard":78,"\u4fbf\u5229":[109,91,23,122,86,13,133,134,136,191,181,160,192,179,185],"\u6271\u3048\u308b":[168,126,81],"/*":[142,5,88,168,16,9,120],"\u898b\u308b":[109,2],"double":[78,152],"\u306e\u304b\u308f\u308a":81,"/groonga":[142,3,96,98,7,102,9,10,105,106,78,192,167,153,88,14,60,62,120,22,24,126,103,175,28,177,178,82,130,132,156,154,140,90],"-working":7,"-get":[7,154,14,153,20],",[\"":71,"7e":170,"\u898b\u3066":[136,109,9],"\u307e\u307e":[11,152,131,13,125,126,153,78],"\u898b\u3064":[7,155,156],well:33,"\u540dn":[106,109],initialized:[41,16],"\u307e\u3060":[69,11,23,152,155,109,33,126,83,175,146,28,81],"\u307e\u3067":[3,144,95,98,115,109,153,59,19,120,67,70,23,17,170,126,97,79,81,181,131,188,140],"\u307e\u3059":[0,2,3,4,5,6,7,8,9,10,11,12,88,14,15,16,17,18,19,20,22,23,24,25,27,28,31,32,33,35,37,38,85,41,42,147,68,46,47,48,49,50,51,52,53,54,55,167,192,59,60,61,62,63,64,65,66,67,45,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,39,86,154,89,90,91,92,93,94,95,96,98,26,100,101,102,103,104,105,106,57,108,109,110,112,114,117,115,116,13,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,140,141,142,143,144,145,146,149,152,153,155,157,159,160,161,162,163,164,165,166,168,169,170,171,172,173,175,97,177,178,179,180,181,182,183,184,185,186,188,189,191,193,194,195],"\u307e\u305a":[3,92,131,71,188,145,170,102,9,153,152,79,192,120],"\u307e\u305b":[2,3,5,7,91,9,76,13,129,16,17,18,19,23,186,28,33,85,41,42,46,48,55,59,60,61,62,64,66,69,27,71,74,78,79,80,81,83,39,118,92,93,95,96,98,103,104,106,192,109,86,115,116,114,120,121,122,125,126,131,133,134,136,137,140,141,142,72,145,146,152,153,155,161,165,168,169,170,172,173,175,97,178,179,181,185,193,194],"_list":[],"\u307e\u305f":[],"\u3058\u304d":33,port:[132,170,98,175,52,90,103],centos6:7,"\u7279\u5b9a":[],"[pat":7,"\u9069\u6642":94,"'..":126,"\u5024\u6bce":131,"\u306a\u3051\u308c":[42,2,72,96,98,7,101,9,104,149,192,59,109,110,152,86,13,114,16,17,60,181,66,23,122,170,74,186,97,80,178,82,185,39],added:[114,43,111],"\u3093\u3057\u304d":160,"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":70,"\u30d5\u30a3\u30eb\u30bf":[7,78],exec:175,customize:9,"\u907f\u3051\u308b":109,"\u30e1\u30fc\u30c8\u30eb":[76,171],"\u89e3\u653e":[83,121,5,16,17,137,64,80,81],nothing:[149,107],"\u9577\u3044":78,"\u73fe\u5b9f":131,windows:[],"\u3002id":16,"-oriented":33,"\u9577\u3055":[122,13,183,170,7,114,64,80],orangain:126,"\u624b\u52d5":9,"&query":103,".rb":[69,156,81],"\u304a\u3051":109,"\u304a\u3053":[13,133],"_calc":[],"\u304a\u304b":192,"\u304a\u3044":[3,122,153,13,133,126,114,61,28,80,180,120],"\u59cb\u70b9":3,"_call":[2,104,70,175],"_format":[2,175],firewood:[7,126],"\u304a\u3070":[28,1,126,78],concatinated:132,"-ftp":170,"\u300cnihon":179,"\u4f4e\u6a5f":70,"\u904b\u7528":133,"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":[],rose:13,"\u629c\u3051\u308b":3,"\u671b\u307e\u3057\u3044":[133,125,153],"\u521d\u671f\u5316":[7,78,54,5,16],"\u30c7\u30fc\u30e2\u30f3\u30d7\u30ed\u30bb\u30b9":9,longest:114,"\u304a\u3070\u305f":[28,126,78],relational:98,"\u305d\u308c":[3,92,46,145,49,102,149,167,109,110,152,153,13,64,96,120,70,121,71,183,83,78,79,80,185,131,156,66,85],"\u306b\u304a\u3044":[13,11,153],"\u4fdd\u8a3c":[127,11],armhf:81,"\u6570\u5024":[],"(content":[110,33,12],"\u30b3\u30df\u30c3\u30c8":153,"\u76ee\u4ee5\u964d":109,art:188,tobby:116,"\u305d\u3053":[13,71,153],"]]":[109,132,155,98,59,173,157,170],"][":[185,126,7,78,28,113,81,181],arc:91,are:[41,109,111,12,86,123,129,98,33,190,49,137,132,19,126,150,29,39,65,120],jemalloc:81,"\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[170,153,120],"_mutex":41,"]}":[13,127,186],"\u30b9\u30b3\u30a2":[109,70,12,86,71,155,7,132,75,61,78],"]x":188,"\u5897\u3048\u308b":[169,27],libraries:[12,129],"\u547c\u3076\u524d":5,"/non":126,"\u305d\u306e":[],"\u3067\u3088\u308a":81,latin:[7,192,98],recently:118,"\u5927\u91cf":[45,70,3,95,81,66],"\u304a\u3088":19,"\u898b\u3064\u3051\u308b":[109,60,9,193,85,179],"\u304a\u308a":[75,81],solr:152,"\u672a\u521d":7,"\u30c6\u30fc\u30d6\u30eb":[],license:[43,153],"\u8a02\u6b63":178,"]:":181,"]%":181,"]'":[9,55],became:142,context:[39,80,33,9,16],"]\"":[7,188,126,181],"],":[91,3,92,12,96,98,47,48,49,101,103,104,149,106,128,144,123,115,109,76,152,86,13,155,59,116,60,18,169,45,165,27,71,163,170,83,127,75,173,175,97,79,179,181,185,131,186,132,188,134,33,136,110,193,85],"]/":103,"].":[78,109,81],"])":[68,163,171,19],finds:114,minagawa:126,"\u691c\u7d22id":114,logged:150,improper:175,"\u30b3\u30de\u30f3\u30c9url":55,"_cancel":[],"'alice":185,"\u7d76\u5bfe":[22,177,10],":#{":150,"\u8003\u616e":[71,92],due:33,"\u89e6\u308c\u308b":85,pg:97,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed":9,po:[],kiske:7,"\u3057\u3084\u3059\u304f":7,"\u6574\u5217":[133,3],"(html":110,"\u8a00\u8a9e\u540d":120,"\u30b5\u30fc\u30d0\u30fc\u30e2\u30c7\u30eb":175,"\u30d9\u30fc\u30b9":[142,91,185,195,133,156,7,114,104,64,28,152,85,81,120],"\u30d8\u30c3\u30c0":[126,81],"\u79d2\u9593":28,"\u5730\u7cfb":76,evaluated:146,"(body":[163,48],"\"sug":172,xvzf:[167,130,24,14,154,192,90],"\u5404\u8a9e":127,"\u6027\u5225":133,"_expansion":[],rid:[87,121],"\u30ed\u30fc\u30ab\u30eb":[152,153],"_most":[],"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":[],james:144,"\u6210\u679c":[],"*type":122,"/ppa":[14,153],"\u5065\u4f5c":45,"\u975e\u4e92\u63db":[28,81,78],"/hoge":98,"_info":[],".js":153,abcde:134,edge:135,nanoseconds:150,"\\bin":102,"\"alice":185,"\u6b8b\u5ff5":13,"\u9006\u5f15\u304d":[],"\u3067\u304d\u308b":[],tables:[],"\u4e92\u63db\u6027":153,"\u3002keys":114,"\u64a4\u5ec3":[156,108,98,81,10],teruya:78,"\u8aa4\u52d5\u4f5c":78,"\u5024\u7528":28,"\u304f\u3060":[142,2,3,144,129,95,46,47,26,137,7,146,91,102,103,104,10,149,110,192,55,167,109,76,152,153,86,13,155,14,71,60,19,25,96,66,22,120,69,27,24,168,169,170,126,74,186,75,173,118,140,78,128,177,81,181,130,185,131,133,134,116,154,188,37,90,85,9],integer:98,"_finalizer":[54,16],"@wareohji":7,tomita:156,ignore:78,"\u6642\u523b":[136,84,188,170,83,18,184],".title":[13,137],"\u7f6e\u304b":[37,192,178,9],"\u7f6e\u304d":[92,153,156,64,80,181],"\u7f6e\u304f":[78,192,140],"[dump":[7,126,81],"\u5404\u8981":86,"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":[1,193,152,124,16,192,39,81],"/rroonga":81,"\u304f\u308c":125,"\u69cb\u6210":[167,130,70,3,153,14,142,154,81],proc:[41,167,109,94,14,130,154,114,54,119],"-drilldown":[109,131,81],"_between":81,"_improper":2,"+ffef":85,"{type":132,handled:9,"\u9577\u751f\u304d":66,"\u5b9f\u73fe":[],"\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[19,126],"=groo":132,range:[],"\u306a\u304b\u3063":[186,109,11,3,152,116,6,98,157,73,7,71,8,147,62,97,170,78,194,81,108],"\u672c\u6587":[79,110],sharding:[78,143,23],"_mecab":78,"\u524d\u65b9":[],shimoda:156,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":[98,9,81],question:78,"\u7a2e\u5225":134,"long":[25,78,104,87],"/hosts":153,"_links":[2,175],"html\u30bf\u30b0":110,files:[],"-query":[142,3,185,188,150,98,33,48,126,7,116,9,78,28,178,163,81,144],"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3":1,"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9":[165,109,81,100],"\u30a2\u30c3\u30c8\u30de\u30fc\u30af":66,aramaki:[28,156],partitioning:23,"_op":[57,39,70],"_or":[],characteristic:123,caller:54,"_of":[2,175],highlight:[],"_on":[2,175],called:41,"\u63a5\u982d":[28,152,95],associated:41,horikoshi:28,"\u679c\u305f":3,warning:[6,98,123,8,9,150,181],"\u30d9\u30af\u30bf\u30fc\u30c7\u30fc\u30bf":86,"\u306b\u5bfe\u3059\u308b":[],oniguruma:78,"_target":[],tatsuya:7,grn:[],gro:33,newvalue:122,nice:115,generates:190,"\u5c5e\u3057":[46,72,131],"\u305f\u3076\u3093":192,generated:[41,190,20],drilldown:[],"\u982d\u8f9e":95,"\u306e\u305e\u3044":85,"\u300d\u3001":[45,81,188],"'grn":124,"\u300d\u3002":160,"\u570f\u5185":188,"\u8868\u3059\u578b":46,"-deafult":28,"\u8aad\u307f\u53d6\u308a":[59,60,98],"-package":[],"\u30b3\u30a2":[192,9,55],"-count":83,"\u958b\u304f\u969b":7,"\u5272\u308a\u5f53\u3066\u308b":[13,95,3,36],issues:81,"\u30b9\u30ad\u30c3\u30d7":[78,126,81],"_pvector":[39,16],"\u8a9e\u6271":145,"\u30ad\u30fc\u30b5\u30a4\u30ba":[95,78],"\u30cb\u30e5\u30fc\u30b9":115,stable:11,include:[143,166,12,88,97,123,63,23,81],"\u7e70\u308a\u8fd4\u3057\u6570":170,"=gr":132,"\u30de\u30c9\u30ea\u30fc\u30c9":76,"\"saerch":18,"\u30d7\u30e9\u30b0\u30de":109,"\u306a\u3068\u304d":133,"*user":[41,54],"\u3002run":180,"\u3067\u5024":[98,3],ranguba:[17,81,86],"\"complete":172,"-in":[80,153],"-id":[7,98,104],"_dir":[41,28,153,78],"|correct":155,"_use":[2,175,81,16],".po":[],smaller:[150,86],memset:78,".pc":[28,148],"\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u30b3\u30b9\u30c8":85,"-line":82,"\u3053\u3046\u3059\u308c":125,"\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[78,79,96,81,126],"\u3002buf":122,etime:182,"\u30a8\u30f3\u30b8\u30f3":[13,133,109,181,45],"{time":150,"-exact":83,"\u521d\u56de":120,"\u30de\u30af\u30c9\u30ca\u30eb\u30c9":93,"gib\u304f\u3089\u3044":140,"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9":[95,3,9],"\u4e0a\u3052\u308b":71,"/coremodule":9,"_name":[],"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9":98,"\u30c8\u30e9\u30a4":[28,66,185,152,95],">version":4,"\u5206\u6790":133,apple:193,apt:[153,14,7,154,20,82],"*str":[41,39],expect:81,"\u3057\u307e\u3063":81,"*keys":114,"_commit":87,"\u5148\u60c5":188,"\u9001\u4fe1":[],use:[],from:[],"\u3057\u307e\u3057":126,usa:131,"\u3057\u307e\u305b":[109,192,125,9,179],"\u5730\u70b9":[75,76],"\u3057\u307e\u3046":[153,133,156,125,126,7,62,78,28,85,81],usr:[22,177,98,9,10,192,180,90],"\u3057\u307e\u3044":[13,71,18,170,144],"\u5207\u308a":[153,126,28,161,78,81],"\u4efb\u610f":[170,133,3,153,98],start:[115,132,142,23],sort:[78,114],"(keyword":39,"_names":84,tokenbigramignoreblanksplitsymbolalpha:[],"?msg":153,"[args":98,"/index":[98,153,120],"-html":[7,156],"\u30b7\u30fc\u30b1\u30f3\u30b9":[18,179,49],tar:[167,130,153,24,14,154,192,90],"_install":[],tag:[45,109,153,12,123,101,149,29],tab:107,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":[],"/rpmforge":130,sis:28,united:173,satoh:28,"\u30c0\u30d6\u30eb":[185,95,7,28,152,66],six:[150,3],"\u30d5\u30a3\u30fc\u30eb\u30c9":96,sid:[28,153,81,127],instead:[109,108,98,142,10],"_create":[],"\"rectangle":[7,76,171],"\u30a2\u30af\u30bb\u30b5":80,"\u601d\u3044\u51fa\u3057":109,"_configure":126,"\u30a2\u30af\u30bb\u30b9":[182,109,156,153,13,140,114,98,19,126,7,60,103,37,28,120,81,9],"\u3042\u308b\u3044":[167,11,122,133,175,185,152,171,35,114,101,9,70,140,57,81,66],"\u30d1\u30c3\u30b1\u30fc\u30b8\u30f3\u30b0\u30dd\u30ea\u30b7\u30fc":126,light:129,"$home":153,"\u30da\u30fc\u30b8":[56,109,3,153,98,126,26,7,78,37,120],"-msgpack":55,"[github":81,freebsd:[],"\u4eac\u90fd":[71,145,85],"#groonga":[188,178],"\u300cbill":145,"\u77e5\u3089":85,"/stem":165,"\u5bfe\u8a71":[3,175],"%'":81,"\u7279\u5225":[91,185,2,19,192,39,179,181],"\u30c0\u30f3\u30d7":[156,126,7,159,140,78],"%\"":181,interpreter:153,"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8":153,"/apt":[154,153],"/api":55,restart:142,bye:47,"\u3057\u3046\u308b":81,"\u30aa\u30da\u30ec\u30fc\u30bf":78,"\u30b9\u30ad\u30fc\u30de":[12,48,101,149,109,76,152,115,116,159,23,123,163,186,110,97,79,181,185,33,173,140,39],"\u30bb\u30af\u30b7\u30e7\u30f3":[91,143,12,134,96,47,49,102,9,104,146,192,167,109,76,153,86,14,59,123,60,18,118,62,63,181,162,66,164,120,69,50,23,122,166,137,24,189,175,78,128,178,179,81,82,130,185,131,32,136,154,138,140,89,90,51],"\u53c2\u52a0":[89,26],successor:152,articles:79,"_free":41,edit:[],".net":[45,3,153,131,13,26,75,103],"%\\":102,nfs:192,"\u6df7\u305c":[13,155],".overcommit":[],"_zone":9,",\"link":13,"\u5c3a\u5ea6":133,"\u89e3\u6c7a":[168,125,7,127,78,28,85],remove:[80,134],inverted:33,out:170,"\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8":188,supports:[41,43,65],dictionary:[193,85],"\u30ec\u30a4\u30e4":70,york:[188,76],"8r":[7,192,98],lts:[14,82],"\u4e00\u90e8":[3,153,73,7,172,78,85],"\u8907\u6570":[],lte:91,auth:[9,55],"\u304a\u3059\u3059\u3081\u3057":[142,185,153,152],"\u8aac\u660e":[],"\u30ea\u30d3\u30eb\u30c9":78,"1\u305a":[11,61],"\"tags":86,"\u53d6\u308a\u8fbc\u307e":153,"\u53d6\u308a\u8fbc\u307f":28,"_symbolic":[2,175],"\u8d77\u70b9":109,utc:152,"\u78ba\u8a8d":[],"\u6b20\u70b9":133,"_qlog":7,unknown:175,"\u304a\u304b\u3057":156,makefile:153,compatibility:[128,193],priority:109,their:12,"1\u3064":[67,91,72,95,96,48,101,9,104,10,146,128,55,109,152,86,155,116,66,22,45,69,170,125,126,172,175,28,79,81,181,185,186,39,33,137,188,140,85,118],"\u30b3\u30de\u30f3\u30c9\u30ea\u30b9\u30c8":98,developer:188,"\u3082\u3057\u304b\u3057":85,"\u7279\u5316":[152,120],shell:98,"_custom":12,"\u30d5\u30a9\u30eb\u30c0\u30fc":102,"-jumandic":167,"\u64a4\u53bb":28,"\u9ad8\u3044\u9806":3,"\u89e3\u6d88":[1,80,86,126,78,38],"_unsupported":2,"\u554f\u3044\u5408\u308f":70,".grn":[9,159],"\u9001\u308a\u65b9":[],"\u82e6\u624b":133,"\u30ab\u30bf\u30ab\u30ca":[64,155,193,85,179],"_ql":81,"\u76ee\u304f\u3089\u3044":66,"_expanders":[22,177,178,10],"(age":97,"\u6f22\u5b57":85,which:[41,132,98,65],"\u4eee\u60f3":[75,126,131,153],"#inspect":78,"\u901f\u3084\u304b":11,".travis":82,"\u7d44\u8fbc\u578b":[],"class":[163,110,33,48],"_build":180,"\u73fe\u5728":[100,93,184,3,84,153,133,194,170,16,17,182,60,118,188,121,78,80,54,66],"_delimited":43,"\u6dfb\u4ed8":7,"_is":[2,136,175,104,78,28,80],gronga:[172,178],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[],"_io":81,"_in":[],"_ii":[],"-output":[109,110,163,170,33,48,126,7],"_id":[41,42,3,87,104,28,109,152,153,16,114,61,64,121,122,75,78,80,113,81,36,39],"_delimiter":[91,134],"\u6307\u3057":13,"\u5bfe\u8c61object":[42,84,94,80,54,119,122],"\u30bb\u30f3\u30c8\u30e9\u30eb\u30d1\u30fc\u30af":188,",\n#":[45,109,91,3,185,12,86,13,188,47,116,75,103,85,152],"<limit":98,"\u5bfe\u8c61":[91,3,145,48,101,147,104,28,149,72,57,55,108,109,11,153,155,16,59,116,114,157,180,62,64,135,66,45,70,121,122,71,163,73,74,173,78,79,80,113,81,185,182,84,159,120,133,33,188,192,38,39],"_truncate":[28,114,122,81],cache:[],"\u30b7\u30a7\u30eb":[185,170,98,78,192,181],daiki:[7,156,148],"*newvalue":122,he:85,local:98,"\u30d3\u30eb\u30c9\u30b7\u30b9\u30c6\u30e0":192,"\u4ed8\u3051\u308b":[165,3,92,135,193,152],"\u30a2\u30af\u30bb\u30b5\u30fc":78,"!xxx":81,"\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb":81,nvars:54,",\n{":[144,12,49,101,9,109,152,86,155,116,18,159,165,23,123,186,79,179,181,185,131,193],"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5":[109,9],words:[152,12],"-gobject":78,"\u30b7\u30a7\u30a2":26,"\u3070\u3044\u3051":[42,109,192,72,122,86,178,96,185,114,82,16,7,186,60,9,181,152,80,39,66],"(column":[12,163,33,48,97,81],",\n[":[33,159],",\n]":[71,186,75,144],candidate2:155,candidate1:155,queries:[170,33],view:132,"&arg":181,"\u304b\u304e\u308a":170,"=fedora":153,module:12,"\uff08\u578b":183,"\u884c\u6570":28,acquires:19,still:104,"\"table":98,dll:[7,28,81],"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":140,"\u6b66\u8005":78,"\u30ea\u30c8\u30e9\u30a4":19,opening:[],".askmonty":81,"\u4e43\u6bc5":156,job:170,homebrew:[],"\u3084\u305d\u306e":173,commands:[36,129],april:153,"/local":[192,9,153],"\"double":152,"\u672a\u5bfe":7,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":[7,37,156,98],"-text":85,"_var":[41,183,39,54,81],"\u30d3\u30eb\u30c9\u30aa\u30d7\u30b7\u30e7\u30f3":[192,102],table:[],"\u671f\u5f85":[13,133,85,181],rpm:[167,130,153,156,126,7,28,81],"\u304a\u3059\u3059\u3081":[101,55],hiroaki:78,"\u30b5\u30d6\u30bb\u30c3\u30c8":[46,114],"=gro":132,"\u9bae\u5ea6":115,"_refused":[2,175],"\u78ba\u5b9f":18,porting:43,"\u521d\u671f\u5024":182,"\u30ed\u30fc\u30c9\u30a8\u30e9\u30fc":7,mike:173,"\u96a3\u308a\u5408\u3063":85,sufficient:41,spammer:[123,12],"-cache":[98,126],hmm:188,roonga:[185,152],"\u5024\u578b":13,"\u672a\u5b9a":13,"\u4f4f\u6240":7,cursor:[64,111,121],"\u793a\u3059":[2,144,12,48,101,149,106,55,109,76,152,13,59,116,123,163,186,110,97,171,185,33,136,35,173],"\u793a\u3055":106,"\u793a\u3057":[93,2,23,131,12,71,31,134,83,76,101,103,52,3,79,85,153,175],thus:[65,190],"-debug":156,"*src":114,avg:[182,109,81],"\u8fd4\u4fe1":[188,79,125],uptime:[1,3,4,175,83,103,9],"\u5185\u90e8":[83,153,13,87,33,16,17,114,78,80,113,81],"\u578b\u304b":46,"\uff08longest":[28,152],"\u6ce8\u610f":[109,110,3,185,131,86,13,170,126,71,114,149,9,104,140,144,28,152,153,55,66],gets:41,"\u691c\u7d22key":114,"\u6587\u8108":186,"\u5168\u6587\u691c":[],"\u6642\u70b9":[17,11,153,124,16,7,19],"\u3075\u306a\u3068":81,english:[109,26,20],uzulla:28,"\uff01:":192,"@kiske":7,");":[70,122,16,17,78,39],tcp:98,")=":168,"_device":[2,175],"(windows":170,"\u5236\u7d04":67,"\u898b\u76f4\u3057":81,"(name":41,unsigned:[41,122,87,17,114,183,64,80,39,54,81],"\u627f\u8a8d":81,book:152,"\u9ad8\u7cbe":133,moritars:79,usage:98,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0":[28,192,180,138,120],execute:[132,98,65,49],"\u300c\uff76":193,"'pid":98,"-inverse":[123,12],helpful:12,"\u307e\u305f\u3044":[7,76],earch:91,";rroonga":[163,48],"\u30bf\u30b0\u30c6\u30ad\u30b9\u30c8":85,"_threshold":[],"\u307e\u305f\u3050":[],"lzo\u3044":74,"_push":70,because:[4,12,129,123,49,132,9],sequence:[36,190,49,18,155,150,179],"-host":170,platforms:41,"export":20,vojtovich:81,yyyymmdd:[143,23,166,63],"\u30b3\u30e1\u30f3\u30c8":[],"_sortby":[],"_exists":[2,175],"\u306e\u307b\u304b":[13,46],"\u96e2\u308c":75,"\u2192id":95,"\u7d44\u5408":116,acronym:129,"enum":84,"\u884c\u672b":181,"\u7acb\u3061\u4e0a\u304c\u3063":170,"*path":[114,84,122],"\u518d\u691c":160,"\u306e\u3044\u305a\u308c\u304b":[35,114,57,171,183],"\u305d\u308c\u305e\u308c":[91,3,4,95,145,98,192,109,152,153,13,116,114,180,66,70,23,71,75,175,79,80,81,131,136,37],"\u5358\u72ec":[170,122],column:[],universe:14,"_nofile":[150,126],".html":[98,9,153,120],"$groonga":153,"\u6570\u5b57":[109,71,170,18,181,85,81,66],yuya:78,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b9\u30ad\u30fc\u30de":159,"_length":[41,175],"\u5b9f\u7a3c":182,transfer:[133,142,175,129],debian:[],"*key":114,"var":[41,70,96,98,9,62,192],"\u30a4\u30f3\u30c6\u30b0\u30ec\u30fc\u30b7\u30e7\u30f3":82,"\u30d5\u30a3\u30eb\u30bf\u30fc":186,"-pid":[28,98,78],"\u30b9\u30cb\u30da\u30c3\u30c8":[33,126],"-pip":20,"\u30e9\u30d9\u30eb":[109,126,81],"\u7834\u68c4":[54,16],squeeze:[126,153],"\u6848\u5185":[78,125,153],"\u30e1\u30f3\u30d0":114,"\u56fa\u6709":[94,86],whether:[128,80,84],record:[76,3,12,86,13,123,114,111,103,78,29],"\u30ed\u30b0\u30a4\u30f3":[140,153],"\u4e00\u9577":133,"\u6c7a\u5b9a":109,blogs:71,"\u305d\u308c\u3086\u3048":[13,185],"\u7a4d\u7528":109,"8bit":46,"\u7acb\u5834":89,"\"se":179,executes:[132,98],"@github":153,"\u52a0\u3048":[13,70,144,82],"(null":81,other:[41,84,98,137,19,78,65,122],bool:[165,185,13,46,126,47,35,171,144],"-analyzer":[7,28],er:181,"\u306f\u307e\u305a":153,".gpg":153,"-sortby":126,".location":188,"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8":156,"\u3002mroonga":[133,80],"\u9054\u3059\u308b":64,emerg:[6,8],"\u5909\u66f4\u70b9":[],"\u306f\u307e\u3060":[60,55]},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},objnames:{"0":["std","option","option"],"1":["c","function","C \u306e\u95a2\u6570"],"2":["c","type","C \u306e\u30c7\u30fc\u30bf\u578b"],"3":["c","macro","C \u306e\u30de\u30af\u30ed"],"4":["c","member","C \u306e\u30e1\u30f3\u30d0\u5909\u6570"]},filenames:["contribution/report","news/0.x","reference/command/return_code","tutorial/introduction","reference/output","reference/api/overview","reference/commands/log_level","news/2.x","reference/commands/log_put","reference/executables/groonga-httpd","reference/commands/register","reference/command/command_version","reference/scorer","tutorial/data","install/ubuntu","contribution/documentation","reference/api/grn_ctx","reference/api/grn_cache","reference/suggest/correction","reference/api/global_configurations","contribution/documentation/introduction","spec","reference/commands/plugin_register","reference/commands/logical_count","install/solaris","reference/api/grn_match_escalation","community","reference/commands/normalizer_list","news/1.2.x","reference/scoring_note","reference/query_expanders","reference/api","reference/command","reference/functions/snippet_html","server","reference/functions/geo_in_rectangle","reference/command/request_id","reference/executables/groonga-server-http","reference/commands/defrag","reference/api/grn_expr","troubleshooting","reference/api/plugin","reference/api/grn_info","news/senna","reference","tutorial/index","reference/types","reference/commands/table_tokenize","reference/functions/highlight_html","reference/suggest/suggestion","reference/commands/io_flush","reference/suggest","server/memcached","reference/executables","reference/api/grn_proc","server/http/comparison","index","reference/api/grn_search","reference/cast","reference/commands/load","reference/commands/column_rename","reference/columns/pseudo","reference/executables/grndb","reference/commands/logical_table_remove","reference/api/grn_table_cursor","reference/executables/groonga-suggest-learner","reference/commands/table_create","limitations","reference/functions/rand","reference/commands/ruby_load","contribution/development/query","troubleshooting/different_results_with_the_same_keyword","reference/column","reference/commands/column_remove","reference/commands/column_create","tutorial/search","reference/functions/geo_distance","reference/commands/range_filter","news","tutorial/match_columns","reference/api/grn_obj","news/4.x","development/travis-ci","reference/commands/status","reference/api/grn_db","reference/tokenizers","reference/columns/vector","reference/api/grn_ii","contribution/documentation/c-api","contribution","install/mac_os_x","reference/commands/tokenize","tutorial/query_expansion","reference/operations/geolocation_search","reference/api/grn_hook","reference/tables","reference/commands/column_list","reference/functions/between","reference/executables/groonga","server/http/groonga-httpd","tutorial/lexicon","reference/functions/in_values","install/windows","tutorial/network","reference/commands/request_cancel","contribution/development/repository","reference/commands/table_list","reference/api/grn_content_type","reference/commands/clearlock","reference/commands/select","reference/functions/html_untag","reference/api/grn_geo","reference/functions/edit_distance","news/1.3.x","reference/api/grn_table","reference/indexing","reference/functions/query","reference/api/grn_command_version","reference/commands/cache_limit","reference/api/grn_user_data","contribution/documentation/i18n","reference/api/grn_index_cursor","reference/api/grn_column","reference/scorers/scorer_tf_idf","reference/api/grn_encoding","contribution/development/cooperation","news/3.x","reference/commands/check","reference/commands/truncate","server/gqtp","install/centos","tutorial/drilldown","reference/executables/groonga-suggest-httpd","characteristic","reference/commands/normalize","contribution/development/com","reference/command/output_format","reference/commands/lock_clear","install","reference/columns/index","reference/tuning","reference/commands/shutdown","server/package","reference/commands/logical_range_filter","tutorial/patricia_trie","spec/search","reference/commands/ruby_eval","reference/commands/table_remove","news/1.1.x","reference/functions/vector_size","reference/log","reference/columns/scalar","reference/grn_expr/script_syntax","contribution/development/release","install/debian","reference/commands/suggest","news/1.0.x","reference/commands/define_selector","tutorial","reference/commands/dump","reference/grn_expr","reference/commands/quit","reference/function","reference/functions/highlight_full","development","reference/token_filters","reference/commands/logical_select","install/fedora","troubleshooting/mmap_cannot_allocate_memory","reference/commands/tokenizer_list","reference/executables/groonga-benchmark","reference/functions/geo_in_circle","reference/suggest/introduction","reference/commands/delete","contribution/development","spec/gqtp","server/http/groonga","reference/commands/plugin_unregister","reference/query_expanders/tsv","reference/suggest/completion","contribution/development/test","reference/regular_expression","reference/executables/grnslap","reference/api/grn_type","reference/functions/now","reference/grn_expr/query_syntax","reference/functions/sub_filter","reference/scorers/scorer_tf_at_most","tutorial/micro_blog","reference/operations","reference/executables/groonga-suggest-create-dataset","client","install/others","reference/normalizers","reference/commands/log_reopen","server/http"],titles:["12.1. \u30d0\u30b0\u30ec\u30dd\u30fc\u30c8\u306e\u9001\u308a\u65b9","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","7.3.4. \u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9","4.1. \u57fa\u672c\u7684\u306a\u64cd\u4f5c","7.2. \u51fa\u529b","7.20.1. \u6982\u8981","7.3.19. <tt class=\"docutils literal\"><span class=\"pre\">log_level</span></tt>","2.1.2\u30ea\u30ea\u30fc\u30b9 - 2013-01-29","7.3.20. <tt class=\"docutils literal\"><span class=\"pre\">log_put</span></tt>","7.1.5. groonga-httpd","7.3.32. <tt class=\"docutils literal\"><span class=\"pre\">register</span></tt>","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","7.11. Scorer","4.3. \u3044\u308d\u3044\u308d\u306a\u30c7\u30fc\u30bf\u306e\u4fdd\u5b58","2.4. Ubuntu","12.2. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u95a2\u9023\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","7.20.8. <tt class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></tt>","7.20.4. <tt class=\"docutils literal\"><span class=\"pre\">grn_cache</span></tt>","7.16.3. \u88dc\u6b63","7.20.2. \u5168\u4f53\u8a2d\u5b9a","12.2.1. Introduction","8. \u4ed5\u69d8","7.3.28. <tt class=\"docutils literal\"><span class=\"pre\">plugin_register</span></tt>","7.3.22. <tt class=\"docutils literal\"><span class=\"pre\">logical_count</span></tt>","2.7. Oracle Solaris","7.20.17. <tt class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></tt>","3. \u30b3\u30df\u30e5\u30cb\u30c6\u30a3","7.3.27. <tt class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></tt>","1.2.9\u30ea\u30ea\u30fc\u30b9 - 2011-12-29","&lt;no title&gt;","7.10. \u30af\u30a8\u30ea\u30fc\u5c55\u958b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u4e00\u89a7","7.20. API","7.3. \u30b3\u30de\u30f3\u30c9","7.14.13. snippet_html","5. \u30b5\u30fc\u30d0\u30fc","7.14.5. geo_in_rectangle","7.3.3. \u30ea\u30af\u30a8\u30b9\u30c8ID","7.1.6. Groonga HTTP\u30b5\u30fc\u30d0\u30fc","7.3.13. <tt class=\"docutils literal\"><span class=\"pre\">defrag</span></tt>","7.20.11. grn_expr","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","7.20.3. Plugin","7.20.16. <tt class=\"docutils literal\"><span class=\"pre\">grn_info</span></tt>","News in Senna period","7. \u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb","4.6. \u30bf\u30b0\u691c\u7d22\u30fb\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d","7.4. \u30c7\u30fc\u30bf\u578b","7.3.43. <tt class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></tt>","7.14.7. highlight_html","7.16.4. \u63d0\u6848","7.3.16. <tt class=\"docutils literal\"><span class=\"pre\">io_flush</span></tt>","7.16. \u30b5\u30b8\u30a7\u30b9\u30c8","5.4. Memcached\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb","7.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","7.20.19. <tt class=\"docutils literal\"><span class=\"pre\">grn_proc</span></tt>","5.2.1. \u6bd4\u8f03","Groonga \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8","7.20.20. <tt class=\"docutils literal\"><span class=\"pre\">grn_search</span></tt>","Cast","7.3.17. <tt class=\"docutils literal\"><span class=\"pre\">load</span></tt>","7.3.11. <tt class=\"docutils literal\"><span class=\"pre\">column_rename</span></tt>","7.6.3. \u64ec\u4f3c\u30ab\u30e9\u30e0","7.1.1. <tt class=\"docutils literal\"><span class=\"pre\">grndb</span></tt>","7.3.25. <tt class=\"docutils literal\"><span class=\"pre\">logical_table_remove</span></tt>","7.20.22. <tt class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></tt>","7.1.9. groonga-suggest-learner","7.3.40. <tt class=\"docutils literal\"><span class=\"pre\">table_create</span></tt>","9. \u5236\u9650\u4e8b\u9805","7.14.12. rand","7.3.35. <tt class=\"docutils literal\"><span class=\"pre\">ruby_load</span></tt>","12.3.4. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","7.6. \u30ab\u30e9\u30e0","7.3.10. <tt class=\"docutils literal\"><span class=\"pre\">column_remove</span></tt>","7.3.8. <tt class=\"docutils literal\"><span class=\"pre\">column_create</span></tt>","4.4. \u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6","7.14.3. geo_distance","7.3.31. <tt class=\"docutils literal\"><span class=\"pre\">range_filter</span></tt>","\u304a\u77e5\u3089\u305b","4.7. match_columns\u30d1\u30e9\u30e1\u30fc\u30bf","7.20.18. <tt class=\"docutils literal\"><span class=\"pre\">grn_obj</span></tt>","4.1.1\u30ea\u30ea\u30fc\u30b9 - 2015-01-29","11.1. Travis CI","7.3.38. <tt class=\"docutils literal\"><span class=\"pre\">status</span></tt>","7.20.9. <tt class=\"docutils literal\"><span class=\"pre\">grn_db</span></tt>","7.8. \u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc","7.6.2. \u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0","7.20.14. <tt class=\"docutils literal\"><span class=\"pre\">grn_ii</span></tt>","12.2.3. C API","12. Groonga\u3078\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","2.2. Mac OS X","7.3.44. <tt class=\"docutils literal\"><span class=\"pre\">tokenize</span></tt>","4.11. \u30af\u30a8\u30ea\u62e1\u5f35","7.15.1. \u4f4d\u7f6e\u60c5\u5831\u691c\u7d22","7.20.13. <tt class=\"docutils literal\"><span class=\"pre\">grn_hook</span></tt>","7.5. \u30c6\u30fc\u30d6\u30eb","7.3.9. <tt class=\"docutils literal\"><span class=\"pre\">column_list</span></tt>","7.14.1. between","7.1.3. <tt class=\"docutils literal\"><span class=\"pre\">groonga</span></tt> executable file","5.2.3. groonga-httpd","4.9. \u5168\u6587\u691c\u7d22\u7528\u306e\u8a9e\u5f59\u8868\u306e\u4f5c\u6210","7.14.9. in_values","2.1. Windows","4.2. \u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9","7.3.33. <tt class=\"docutils literal\"><span class=\"pre\">request_cancel</span></tt>","12.3.1. \u30ea\u30dd\u30b8\u30c8\u30ea","7.3.41. <tt class=\"docutils literal\"><span class=\"pre\">table_list</span></tt>","7.20.7. <tt class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></tt>","7.3.7. <tt class=\"docutils literal\"><span class=\"pre\">clearlock</span></tt>","7.3.36. <tt class=\"docutils literal\"><span class=\"pre\">select</span></tt>","7.14.8. html_untag","7.20.12. <tt class=\"docutils literal\"><span class=\"pre\">grn_geo</span></tt>","7.14.2. edit_distance","1.3.0\u30ea\u30ea\u30fc\u30b9 - 2012-01-29","7.20.21. <tt class=\"docutils literal\"><span class=\"pre\">grn_table</span></tt>","7.17. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9","7.14.11. query","7.20.6. <tt class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></tt>","7.3.5. <tt class=\"docutils literal\"><span class=\"pre\">cache_limit</span></tt>","7.20.24. <tt class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></tt>","12.2.2. \u56fd\u969b\u5316","7.20.15. <tt class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></tt>","7.20.5. <tt class=\"docutils literal\"><span class=\"pre\">grn_column</span></tt>","7.11.3.2. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_idf</span></tt>","7.20.10. <tt class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></tt>","12.3.3. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","3.1.2\u30ea\u30ea\u30fc\u30b9 - 2014-01-29","7.3.6. <tt class=\"docutils literal\"><span class=\"pre\">check</span></tt>","7.3.46. <tt class=\"docutils literal\"><span class=\"pre\">truncate</span></tt>","5.3. GQTP","2.5. CentOS","4.5. \u30c9\u30ea\u30eb\u30c0\u30a6\u30f3","7.1.8. groonga-suggest-httpd","1. Groonga\u306e\u7279\u5fb4","7.3.26. <tt class=\"docutils literal\"><span class=\"pre\">normalize</span></tt>","12.3.2. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","7.3.2. \u51fa\u529b\u5f62\u5f0f","7.3.18. <tt class=\"docutils literal\"><span class=\"pre\">lock_clear</span></tt>","2. \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb","7.6.4. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0","7.19. \u30c1\u30e5\u30fc\u30cb\u30f3\u30b0","7.3.37. <tt class=\"docutils literal\"><span class=\"pre\">shutdown</span></tt>","5.1. \u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8","7.3.23. <tt class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></tt>","4.8. \u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22","8.2. \u691c\u7d22","7.3.34. <tt class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></tt>","7.3.42. <tt class=\"docutils literal\"><span class=\"pre\">table_remove</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","7.14.15. vector_size","7.18. Log","7.6.1. \u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0","7.12.2. \u30b9\u30af\u30ea\u30d7\u30c8\u69cb\u6587","12.3.6. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","2.3. Debian GNU/Linux","7.3.39. <tt class=\"docutils literal\"><span class=\"pre\">suggest</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","7.3.12. <tt class=\"docutils literal\"><span class=\"pre\">define_selector</span></tt>","4. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb","7.3.15. <tt class=\"docutils literal\"><span class=\"pre\">dump</span></tt>","7.12. grn_expr","7.3.30. <tt class=\"docutils literal\"><span class=\"pre\">quit</span></tt>","7.14. \u95a2\u6570","7.14.6. highlight_full","11. \u958b\u767a","7.9. \u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc","7.3.24. <tt class=\"docutils literal\"><span class=\"pre\">logical_select</span></tt>","2.6. Fedora","10.2. mmap Cannot allocate memory\u30a8\u30e9\u30fc\u3092\u56de\u907f\u3059\u308b\u306b\u306f","7.3.45. <tt class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></tt>","7.1.4. groonga-benchmark","7.14.4. geo_in_circle","7.16.1. \u306f\u3058\u3081\u306b","7.3.14. <tt class=\"docutils literal\"><span class=\"pre\">delete</span></tt>","12.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","8.1. GQTP","5.2.2. groonga","7.3.29. <tt class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></tt>","7.10.1. QueryExpanderTSV","7.16.2. \u88dc\u5b8c","12.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","7.13. \u6b63\u898f\u8868\u73fe","7.1.2. grnslap","7.20.23. <tt class=\"docutils literal\"><span class=\"pre\">grn_type</span></tt>","7.14.10. now","7.12.1. \u30af\u30a8\u30ea\u30fc\u69cb\u6587","7.14.14. sub_filter","7.11.3.1. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_at_most</span></tt>","4.10. \u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210","7.15. \u64cd\u4f5c\u65b9\u6cd5","7.1.7. groonga-suggest-create-dataset","6. \u30af\u30e9\u30a4\u30a2\u30f3\u30c8","2.8. \u305d\u306e\u4ed6","7.7. \u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc","7.3.21. <tt class=\"docutils literal\"><span class=\"pre\">log_reopen</span></tt>","5.2. HTTP"],objects:{"":{grn_ctx_get_match_escalation_threshold:[25,1,1,"c.grn_ctx_get_match_escalation_threshold"],"--cache-limit":[98,0,1,"cmdoption--cache-limit"],grn_obj_reinit:[80,1,1,"c.grn_obj_reinit"],grn_get_default_match_escalation_threshold:[25,1,1,"c.grn_get_default_match_escalation_threshold"],grn_db_create:[84,1,1,"c.grn_db_create"],grn_plugin_charlen:[41,1,1,"c.grn_plugin_charlen"],grn_obj_get_hook:[94,1,1,"c.grn_obj_get_hook"],grn_obj_expire:[80,1,1,"c.grn_obj_expire"],grn_table_cursor_close:[64,1,1,"c.grn_table_cursor_close"],"-P":[182,0,1,"cmdoption-P"],grn_table_cursor_set_value:[64,1,1,"c.grn_table_cursor_set_value"],grn_expr_syntax_escape:[39,1,1,"c.grn_expr_syntax_escape"],"--log-output-dir":[170,0,1,"cmdoption--log-output-dir"],"-d":[65,0,1,"cmdoption-d"],"-a":[98,0,1,"cmdoption-a"],"-c":[98,0,1,"cmdoption-c"],grn_obj_set_info:[42,1,1,"c.grn_obj_set_info"],"-m":[182,0,1,"cmdoption-m"],"-l":[65,0,1,"cmdoption-l"],"--disable-max-fd-check":[132,0,1,"cmdoption--disable-max-fd-check"],"-i":[170,0,1,"cmdoption-i"],"-h":[98,0,1,"cmdoption-h"],grn_db:[84,2,1,"c.grn_db"],"--log-rotate-threshold-size":[98,0,1,"cmdoption--log-rotate-threshold-size"],"-t":[132,0,1,"cmdoption-t"],grn_command_version:[117,2,1,"c.grn_command_version"],grn_obj_set_element_info:[42,1,1,"c.grn_obj_set_element_info"],"-p":[132,0,1,"cmdoption-p"],"-s":[65,0,1,"cmdoption-s"],"-r":[65,0,1,"cmdoption-r"],grn_plugin_proc_get_var:[41,1,1,"c.grn_plugin_proc_get_var"],grn_ctx_at:[16,1,1,"c.grn_ctx_at"],"--bind-address":[98,0,1,"cmdoption--bind-address"],GRN_COMMAND_VERSION_STABLE:[117,3,1,"c.GRN_COMMAND_VERSION_STABLE"],"--config-path":[98,0,1,"cmdoption--config-path"],grn_table_size:[114,1,1,"c.grn_table_size"],"--query-log-path":[98,0,1,"cmdoption--query-log-path"],grn_ctx_use:[16,1,1,"c.grn_ctx_use"],grn_obj_defrag:[80,1,1,"c.grn_obj_defrag"],db:[170,0,1,"cmdoption-arg-db"],grn_get_lock_timeout:[19,1,1,"c.grn_get_lock_timeout"],grn_table_cursor_open:[64,1,1,"c.grn_table_cursor_open"],grn_get_default_encoding:[124,1,1,"c.grn_get_default_encoding"],GRN_OBJ_LOCK:[80,3,1,"c.GRN_OBJ_LOCK"],grn_ii_buffer_append:[87,1,1,"c.grn_ii_buffer_append"],grn_obj_column:[80,1,1,"c.grn_obj_column"],grn_geo_estimate_in_rectangle:[111,1,1,"c.grn_geo_estimate_in_rectangle"],grn_table_sort:[114,1,1,"c.grn_table_sort"],GRN_COLUMN_NAME_SCORE:[122,3,1,"c.GRN_COLUMN_NAME_SCORE"],grn_obj_unlink:[80,1,1,"c.grn_obj_unlink"],grn_obj_id:[80,1,1,"c.grn_obj_id"],grn_obj_set_value:[80,1,1,"c.grn_obj_set_value"],grn_plugin_win32_base_dir:[41,1,1,"c.grn_plugin_win32_base_dir"],grn_encoding:[124,2,1,"c.grn_encoding"],grn_proc_create:[54,1,1,"c.grn_proc_create"],GRN_PLUGIN_FREE:[41,3,1,"c.GRN_PLUGIN_FREE"],GRN_COLUMN_NAME_VALUE:[122,3,1,"c.GRN_COLUMN_NAME_VALUE"],"--ftp":[170,0,1,"cmdoption--ftp"],"--dir":[170,0,1,"cmdoption--dir"],"--address":[98,0,1,"cmdoption--address"],grn_table_group_result:[114,2,1,"c.grn_table_group_result"],grn_expr_close:[39,1,1,"c.grn_expr_close"],grn_obj_path:[80,1,1,"c.grn_obj_path"],grn_cache_get_max_n_entries:[17,1,1,"c.grn_cache_get_max_n_entries"],grn_obj_db:[84,1,1,"c.grn_obj_db"],grn_geo_cursor_next:[111,1,1,"c.grn_geo_cursor_next"],GRN_OBJ_APPEND:[80,3,1,"c.GRN_OBJ_APPEND"],grn_table_lcp_search:[114,1,1,"c.grn_table_lcp_search"],grn_table_create:[114,1,1,"c.grn_table_create"],grn_ctx_get_all_tables:[16,1,1,"c.grn_ctx_get_all_tables"],grn_encoding_to_string:[124,1,1,"c.grn_encoding_to_string"],"--daemon":[65,0,1,"cmdoption--daemon"],grn_obj_is_builtin:[80,1,1,"c.grn_obj_is_builtin"],grn_table_columns:[114,1,1,"c.grn_table_columns"],grn_ctx_set_output_type:[16,1,1,"c.grn_ctx_set_output_type"],"--pid-path":[98,0,1,"cmdoption--pid-path"],"--encoding":[98,0,1,"cmdoption--encoding"],grn_ctx_set_finalizer:[16,1,1,"c.grn_ctx_set_finalizer"],grn_cache:[17,2,1,"c.grn_cache"],grn_table_delete_by_id:[114,1,1,"c.grn_table_delete_by_id"],grn_content_type:[107,2,1,"c.grn_content_type"],grn_plugin_mutex:[41,2,1,"c.grn_plugin_mutex"],grn_expr_get_keywords:[39,1,1,"c.grn_expr_get_keywords"],grn_ii_buffer:[87,2,1,"c.grn_ii_buffer"],"--host":[170,0,1,"cmdoption--host"],grn_ctx_get_output_type:[16,1,1,"c.grn_ctx_get_output_type"],grn_obj_set_finalizer:[54,1,1,"c.grn_obj_set_finalizer"],grn_cache_current_set:[17,1,1,"c.grn_cache_current_set"],grn_obj_user_data:[119,1,1,"c.grn_obj_user_data"],grn_obj_lock:[80,1,1,"c.grn_obj_lock"],grn_obj_name:[80,1,1,"c.grn_obj_name"],"--log-path":[65,0,1,"cmdoption--log-path"],GRN_COLUMN_NAME_KEY_LEN:[122,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],"-e":[98,0,1,"cmdoption-e"],GRN_OBJ_COMPARE:[80,3,1,"c.GRN_OBJ_COMPARE"],grn_expr_append_const:[39,1,1,"c.grn_expr_append_const"],grn_plugin_mutex_lock:[41,1,1,"c.grn_plugin_mutex_lock"],grn_obj_clear_lock:[80,1,1,"c.grn_obj_clear_lock"],grn_table_cursor_next:[64,1,1,"c.grn_table_cursor_next"],grn_expr_alloc:[39,1,1,"c.grn_expr_alloc"],grn_expr_compile:[39,1,1,"c.grn_expr_compile"],grn_user_data:[119,2,1,"c.grn_user_data"],grn_obj_get_range:[80,1,1,"c.grn_obj_get_range"],grn_table_get:[114,1,1,"c.grn_table_get"],grn_ctx_fin:[16,1,1,"c.grn_ctx_fin"],grn_geo_cursor_open_in_rectangle:[111,1,1,"c.grn_geo_cursor_open_in_rectangle"],"--max-threads":[98,0,1,"cmdoption--max-threads"],grn_ctx_init:[16,1,1,"c.grn_ctx_init"],grn_ii_buffer_close:[87,1,1,"c.grn_ii_buffer_close"],GRN_OBJ_DECR:[80,3,1,"c.GRN_OBJ_DECR"],grn_table_sort_key:[114,2,1,"c.grn_table_sort_key"],grn_obj_rename:[80,1,1,"c.grn_obj_rename"],grn_table_group_flags:[114,2,1,"c.grn_table_group_flags"],grn_obj_check:[80,1,1,"c.grn_obj_check"],grn_table_at:[114,1,1,"c.grn_table_at"],grn_column_name:[122,1,1,"c.grn_column_name"],grn_table_difference:[114,1,1,"c.grn_table_difference"],"--n-lines-per-log-file":[132,0,1,"cmdoption--n-lines-per-log-file"],GRN_PLUGIN_INIT:[41,1,1,"c.GRN_PLUGIN_INIT"],grn_cache_close:[17,1,1,"c.grn_cache_close"],grn_obj_close:[80,1,1,"c.grn_obj_close"],GRN_COLUMN_NAME_ID_LEN:[122,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],grn_table_truncate:[114,1,1,"c.grn_table_truncate"],grn_obj_get_value:[80,1,1,"c.grn_obj_get_value"],grn_cache_open:[17,1,1,"c.grn_cache_open"],"--server-id":[98,0,1,"cmdoption--server-id"],grn_obj_delete_hook:[94,1,1,"c.grn_obj_delete_hook"],"-n":[98,0,1,"cmdoption-n"],"--port":[132,0,1,"cmdoption--port"],grn_ii:[87,2,1,"c.grn_ii"],"--log-base-path":[65,0,1,"cmdoption--log-base-path"],grn_obj_is_locked:[80,1,1,"c.grn_obj_is_locked"],grn_expr_exec:[39,1,1,"c.grn_expr_exec"],grn_plugin_proc_alloc:[41,1,1,"c.grn_plugin_proc_alloc"],"--log-level":[65,0,1,"cmdoption--log-level"],GRN_OBJ_SET_MASK:[80,3,1,"c.GRN_OBJ_SET_MASK"],grn_fin:[5,1,1,"c.grn_fin"],GRN_COLUMN_NAME_NSUBRECS:[122,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],grn_plugin_mutex_unlock:[41,1,1,"c.grn_plugin_mutex_unlock"],GRN_COMMAND_VERSION_MAX:[117,3,1,"c.GRN_COMMAND_VERSION_MAX"],grn_plugin_expr_var_init:[41,1,1,"c.grn_plugin_expr_var_init"],grn_obj_get_element_info:[42,1,1,"c.grn_obj_get_element_info"],grn_search_optarg:[57,2,1,"c.grn_search_optarg"],grn_expr_append_const_str:[39,1,1,"c.grn_expr_append_const_str"],grn_table_rename:[114,1,1,"c.grn_table_rename"],script:[170,0,1,"cmdoption-arg-script"],GRN_PLUGIN_ERROR:[41,3,1,"c.GRN_PLUGIN_ERROR"],GRN_COMMAND_VERSION_MIN:[117,3,1,"c.GRN_COMMAND_VERSION_MIN"],grn_expr_get_var_by_offset:[39,1,1,"c.grn_expr_get_var_by_offset"],GRN_PLUGIN_MALLOC:[41,3,1,"c.GRN_PLUGIN_MALLOC"],grn_obj_add_hook:[94,1,1,"c.grn_obj_add_hook"],GRN_PLUGIN_LOG:[41,3,1,"c.GRN_PLUGIN_LOG"],grn_index_cursor_open:[121,1,1,"c.grn_index_cursor_open"],grn_proc_func:[54,2,1,"c.grn_proc_func"],grn_db_create_optarg:[84,2,1,"c.grn_db_create_optarg"],grn_column_table:[122,1,1,"c.grn_column_table"],grn_table_add:[114,1,1,"c.grn_table_add"],grn_obj_unlock:[80,1,1,"c.grn_obj_unlock"],grn_cache_set_max_n_entries:[17,1,1,"c.grn_cache_set_max_n_entries"],grn_init:[5,1,1,"c.grn_init"],grn_proc_type:[54,2,1,"c.grn_proc_type"],grn_proc_get_info:[54,1,1,"c.grn_proc_get_info"],GRN_OBJ_INCR:[80,3,1,"c.GRN_OBJ_INCR"],grn_ctx_close:[16,1,1,"c.grn_ctx_close"],"--query-log-rotate-threshold-size":[98,0,1,"cmdoption--query-log-rotate-threshold-size"],GRN_COLUMN_NAME_KEY:[122,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_SCORE_LEN:[122,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE_LEN:[122,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],grn_table_cursor_get_key:[64,1,1,"c.grn_table_cursor_get_key"],grn_obj_get_values:[80,1,1,"c.grn_obj_get_values"],grn_column_rename:[122,1,1,"c.grn_column_rename"],GRN_OBJ_UNLOCK:[80,3,1,"c.GRN_OBJ_UNLOCK"],grn_obj_get_info:[42,1,1,"c.grn_obj_get_info"],grn_ctx_db:[16,1,1,"c.grn_ctx_db"],"--protocol":[170,0,1,"cmdoption--protocol"],GRN_PLUGIN_REALLOC:[41,3,1,"c.GRN_PLUGIN_REALLOC"],grn_table_cursor:[64,2,1,"c.grn_table_cursor"],grn_table_cursor_get_value:[64,1,1,"c.grn_table_cursor_get_value"],grn_ctx_get:[16,1,1,"c.grn_ctx_get"],grn_ctx_set_match_escalation_threshold:[25,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_db_open:[84,1,1,"c.grn_db_open"],grn_column_index:[122,1,1,"c.grn_column_index"],"--n-threads":[132,0,1,"cmdoption--n-threads"],grn_ctx:[16,2,1,"c.grn_ctx"],"--help":[98,0,1,"cmdoption--help"],"--groonga":[170,0,1,"cmdoption--groonga"],grn_table_setoperation:[114,1,1,"c.grn_table_setoperation"],GRN_COLUMN_NAME_ID:[122,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_OBJ_SET:[80,3,1,"c.GRN_OBJ_SET"],"--document-root":[98,0,1,"cmdoption--document-root"],grn_info_type:[42,2,1,"c.grn_info_type"],grn_column_truncate:[122,1,1,"c.grn_column_truncate"],grn_obj:[80,2,1,"c.grn_obj"],grn_obj_remove:[80,1,1,"c.grn_obj_remove"],grn_plugin_mutex_open:[41,1,1,"c.grn_plugin_mutex_open"],GRN_OBJ_GET:[80,3,1,"c.GRN_OBJ_GET"],grn_expr_append_const_int:[39,1,1,"c.grn_expr_append_const_int"],grn_expr_syntax_escape_query:[39,1,1,"c.grn_expr_syntax_escape_query"],grn_geo_select_in_rectangle:[111,1,1,"c.grn_geo_select_in_rectangle"],grn_set_lock_timeout:[19,1,1,"c.grn_set_lock_timeout"],grn_ii_buffer_commit:[87,1,1,"c.grn_ii_buffer_commit"],grn_obj_search:[57,1,1,"c.grn_obj_search"],"--send-endpoint":[65,0,1,"cmdoption--send-endpoint"],grn_table_update_by_id:[114,1,1,"c.grn_table_update_by_id"],grn_hook_entry:[94,2,1,"c.grn_hook_entry"],grn_expr_append_op:[39,1,1,"c.grn_expr_append_op"],grn_geo_point:[111,2,1,"c.grn_geo_point"],grn_table_cursor_table:[64,1,1,"c.grn_table_cursor_table"],grn_index_cursor_next:[121,1,1,"c.grn_index_cursor_next"],grn_table_delete:[114,1,1,"c.grn_table_delete"],dest:[98,0,1,"cmdoption-arg-dest"],grn_ctx_open:[16,1,1,"c.grn_ctx_open"],grn_plugin_isspace:[41,1,1,"c.grn_plugin_isspace"],grn_column_index_update:[122,1,1,"c.grn_column_index_update"],grn_obj_delete_by_id:[80,1,1,"c.grn_obj_delete_by_id"],grn_ctx_get_command_version:[16,1,1,"c.grn_ctx_get_command_version"],"--default-match-escalation-threshold":[98,0,1,"cmdoption--default-match-escalation-threshold"],grn_table_cursor_delete:[64,1,1,"c.grn_table_cursor_delete"],grn_type_create:[183,1,1,"c.grn_type_create"],grn_obj_path_by_id:[80,1,1,"c.grn_obj_path_by_id"],grn_plugin_command_create:[41,1,1,"c.grn_plugin_command_create"],grn_db_recover:[84,1,1,"c.grn_db_recover"],grn_builtin_type:[183,2,1,"c.grn_builtin_type"],grn_table_get_key:[114,1,1,"c.grn_table_get_key"],GRN_OBJ_PREPEND:[80,3,1,"c.GRN_OBJ_PREPEND"],grn_set_default_match_escalation_threshold:[25,1,1,"c.grn_set_default_match_escalation_threshold"],grn_cache_current_get:[17,1,1,"c.grn_cache_current_get"],grn_expr_create:[39,1,1,"c.grn_expr_create"],grn_get_default_command_version:[117,1,1,"c.grn_get_default_command_version"],grn_expr_add_var:[39,1,1,"c.grn_expr_add_var"],grn_encoding_parse:[124,1,1,"c.grn_encoding_parse"],grn_column_create:[122,1,1,"c.grn_column_create"],grn_ctx_set_command_version:[16,1,1,"c.grn_ctx_set_command_version"],grn_table_sort_flags:[114,2,1,"c.grn_table_sort_flags"],grn_obj_get_nhooks:[94,1,1,"c.grn_obj_get_nhooks"],grn_set_default_encoding:[124,1,1,"c.grn_set_default_encoding"],grn_set_default_command_version:[117,1,1,"c.grn_set_default_command_version"],grn_plugin_proc_get_var_by_offset:[41,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_ii_buffer_open:[87,1,1,"c.grn_ii_buffer_open"],"--receive-endpoint":[65,0,1,"cmdoption--receive-endpoint"],GRN_COLUMN_NAME_NSUBRECS_LEN:[122,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],grn_table_group:[114,1,1,"c.grn_table_group"],GRN_PLUGIN_FIN:[41,1,1,"c.GRN_PLUGIN_FIN"],command:[98,0,1,"cmdoption-arg-command"],GRN_PLUGIN_REGISTER:[41,1,1,"c.GRN_PLUGIN_REGISTER"],grn_plugin_mutex_close:[41,1,1,"c.grn_plugin_mutex_close"],grn_db_touch:[84,1,1,"c.grn_db_touch"],grn_table_update:[114,1,1,"c.grn_table_update"]},grn_db_create_optarg:{n_builtin_type_names:[84,4,1,"c.grn_db_create_optarg.n_builtin_type_names"],builtin_type_names:[84,4,1,"c.grn_db_create_optarg.builtin_type_names"]}},titleterms:{"_pat":95,"\u5f62\u5f0f":[59,136],senna:43,"\u6539\u826f":[1,43,156,126,148,7,78,28,113,81],"\u7b26\u53f7":152,"\u6d41\u308c":120,"-prefix":192,prefix:70,"\u6761\u4ef6":[75,110,109,153,185],query:[116,109,175,150],"\u5fc5\u9808":[109,76,23,166,132,96,134,47,116,60,91,104,63,143,128],jessie:154,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":103,"_filters":[91,66],"\u30d3\u30c3\u30c8":152,"\u5dee\u6f14":152,"-release":153,"\u901a\u4fe1":135,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[132,98,4],to:[132,36,129],"_column":122,"\u524a\u9664":173,"\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":180,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[170,40],"-lz4":192,string:[47,91,134],groonga:[56,142,43,153,190,132,133,135,98,99,70,174,9,176,37,89,65,170,120],"\u95a2\u9023":[79,109,9,15,65],"=message":192,"\u304a\u6c17":188,"\u5165\u308a":188,facebook:26,"\u30b5\u30f3\u30d7\u30eb":[182,170],"_database":9,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[178,180,138,20],"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":79,"\u52d5\u4f5c":[180,18,179,153,49],"\u30b9\u30af\u30ea\u30d7\u30c8":[152,153],"\u3068\u3057\u3066":46,"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[0,26],"-escalation":192,vector:149,"\u7c21\u5358":109,path:69,"\u30aa\u30d7\u30b7\u30e7\u30f3":[182,170,190],".po":120,"\u8ad6\u7406\u548c":185,"\u4ed8\u4e0e":79,"\u771f\u507d\u5024":[13,152],"-benchmark":170,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":165,"\u6f14\u7b97\u5b50":152,"\u88dc\u5b8c":[172,179],"\u7701\u7565":[47,91,143,166,50,132,134,116,76,159,63,23],sub:186,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":153,"\u4ed8\u304d":[45,152],"\u30ea\u30c6\u30e9\u30eb":152,"\u6210\u529f":136,"new":60,tips:153,"\u683c\u7d0d":46,memcached:52,body:136,"\u30d1\u30c3\u30b1\u30fc\u30b8":153,"\u6587\u6cd5":75,"\u30de\u30c3\u30c1\u30ab\u30e9\u30e0":185,"\u30c6\u30b9\u30c8":180,"\u30bf\u30b0":45,"\u9069\u7528":86,"\u5b8c\u5168":145,ubuntu:[14,153],"\u6e96\u5099":[92,153],"\u3042\u308b":188,"\u306b\u95a2\u3059\u308b":46,"\u95a2\u4fc2\u5f0f":70,mmap:168,"\u4e26\u5217":153,"_key":[95,143,23,166,63],"\u63d0\u4f9b":125,"\u4e3b\u30ad\u30fc":[46,144],blogroonga:153,"_version":[117,11],"_name":[137,60,50,163,128],"_output":109,"\u5165\u6f14":152,"_info":42,changes:43,options:[132,98,65],"\u7ffb\u8a33":[153,120],"\u30af\u30a8\u30ea":[133,70,92],"\u30de\u30c3\u30c1":152,tokenunigram:85,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":9,"_schema":159,logical:[143,23,166,63],"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[89,15],"\u6587\u5b57\u5217":[13,152],api:[88,31],"_table":[70,143,166,114,63,64,23],select:109,"\u9001\u4fe1":103,use:163,"\u69cb\u6587":[91,143,6,96,98,47,48,146,50,147,104,10,149,106,108,109,76,152,155,194,59,116,60,157,62,63,169,161,181,66,22,69,27,23,159,166,163,73,74,127,173,118,97,77,128,177,185,83,8,186,134,33,137,101,110,38,141],"\u624b\u9806":153,zip:102,"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":70,"\u30d5\u30ec\u30fc\u30ba":185,"\u305f\u3081":[109,70,125],https:55,tokenize:91,scope:186,"_flags":109,"\u3066\u308b":188,"\u60c5\u5831":[93,133,125,75,174,188,180],"\u30d6\u30ed\u30b0":153,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":30,"\u3059\u308b":[0,153,131,86,71,168,179,125,49,132,18,9,79,65,180],normalizer:[91,163,27,134,66],"\u7d4c\u7def\u5ea6":13,"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0":140,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":152,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":153,vm:140,"_register":22,"\u3053\u3068":153,"_base":9,"_command":117,"_escape":163,"\u4ee5\u4e0b":185,"\u4ee5\u4e0a":[185,152],standalone:98,"\u8d77\u52d5":[142,103,175],"\u3060\u3051":[125,86],"\u524d\u63d0":153,install:192,clearlock:108,"\u89e3\u6790":180,"\u7de8\u96c6":120,"\u6bd4\u8f03":[152,55],"_encoding":124,"\u304c\u3063":79,process:150,lock:137,"_idf":123,"\u53d6\u5f97":[3,153],shard:[143,23,166,63],"_install":192,"/linux":154,"\u660e\u793a":153,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":152,grndb:62,"\u958b\u767a":[164,174,125],"\u548c\u4ee3":152,normalize:134,"\u7406\u7531":125,sphere:76,tokendelimit:85,"\u540d\u524d":[182,68,184,112,46,170,190,35,61,37,171],"\u691c\u51fa":180,normalizernfkc:193,snippet:33,how:[36,129],"\u548c\u6f14":152,"\u30d7\u30ed\u30bb\u30b9":140,"\u9664\u7b97":152,"\u8fd1\u508d":152,"\u30b3\u30de\u30f3\u30c9":[3,98,32,103,62,37],"_create":[74,9,66],"-gqtp":142,"\u7d42\u4e86":[142,9,175],tokenregexp:85,"_hash":95,max:[143,166,63,118,97,23],clone:120,"\u4e57\u7b97":152,mac:90,callback:70,offset:[109,143],"\u6642\u9593":[188,152],"\u7f72\u540d":153,data:[9,65],"\u30ea\u30dd\u30b8\u30c8\u30ea":[105,120],"\u8a2d\u5b9a":[153,132,19,9,55,82],status:[83,175,190],"-munin":192,"\u66f8\u5f0f":[182,68,184,3,112,132,170,35,9,37,171,65],tokenbigram:85,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[13,86],"_indexes":159,register:10,"-files":153,"\u7d22\u5f15":133,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":102,"\u9078\u629e":181,"_values":101,"\u30a4\u30f3\u30dd\u30fc\u30c8":153,order:143,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":158,"\u30c4\u30a4\u30fc\u30c8":125,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[56,15,153],rand:68,grntest:153,"\u30d1\u30c8\u30ea\u30b7\u30a2":144,"\u623b\u308a\u5024":[91,143,6,96,47,48,146,50,147,110,104,10,149,106,108,76,155,194,59,116,60,157,159,63,169,161,66,22,69,27,23,166,163,73,74,127,173,118,97,77,128,177,83,8,186,132,134,33,137,101,37,38,141],"\u305f\u3044":153,gqtp:[142,135,175,129],"\u6d6e\u52d5":152,"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":151,"_api":70,"_match":25,"_rename":60,"\u6587\u66f8":[18,152],"=platform":192,html:[110,120,20],".max":140,"\u63a5\u7d9a":175,tsv:[136,178],"\u4ee5\u4e0b\u6f14":152,cutter:[180,153],"\u57fa\u672c":[3,152],greater:70,"\u30d7\u30ed\u30c8\u30b3\u30eb":175,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":103,"\u52d5\u7684":115,not:70,"\u8a8d\u8a3c":55,"\u8fd4\u5024":[68,109,171,112,35,184],now:184,"\u5c0f\u306a\u308a":[185,152],"\u90e8\u5206\u4e00\u81f4":145,"_select":[70,166],"-pack":192,name:[60,66],edit:112,"-encoding":192,"\u66f4\u65b0":[133,179,153,120],kern:140,token:[91,66],mode:[47,91,98,70],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[139,3],".overcommit":140,"\u767b\u9332":0,"-create":190,"\u4e26\u3079":3,normalizerauto:193,"\u751f\u6210":[120,153,20],"\u74b0\u5883":[180,153],"\u5b9f\u4f8b":70,"\u9032\u3081":125,"_size":149,"\u8a98\u5c0e":125,"\u5373\u6642":133,"\u30d8\u30c3\u30c0\u30fc":175,todo:[116,33],"\u9001\u308a\u65b9":[0,120],"-match":192,"\u30ab\u30d0\u30ec\u30c3\u30b8":180,"\u7def\u5ea6":133,"\u6761\u4ef6\u5f0f":185,"_plugins":159,"-default":192,"\u5bfe\u5fdc":[93,125,55],"\u3065\u3051":11,red:153,rk:179,"_content":107,nofile:140,"\u30e6\u30fc\u30b6\u30fcid":188,proxy:9,"_string":[116,186],"_tf":[123,187],"\u7d50\u5408\u5f0f":185,"\u4ed5\u69d8":21,"\u4e8b\u9805":[67,46,170],launch:132,"\u53e4\u3044":78,filter:[143,109,23,166,186],"\u53ef\u80fd":[165,91,23,166,116,132,133,134,47,76,50,9,159,63,143],"\u306b\u3088\u308b":[79,144,131],period:43,"\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2":133,"_proc":54,"_user":119,assign:36,"\u30d9\u30af\u30bf\u30fc":46,"\u3078\u3068":125,"\u6e1b\u7b97":152,suffix:70,"\u8aac\u660e":[182,68,184,112,46,170,35,61,171],"-version":11,"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":194,"\u5909\u66f4":[71,156,55],"\u7d44\u307f\u8fbc\u307f":[98,193,85,12],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":153,open:163,size:175,"\u78ba\u8a8d":[153,120],"\u7d5e\u8fbc":75,"\u30b9\u30b3\u30a2\u30fc":109,script:146,introduction:20,"\u30ab\u30b9\u30b1\u30fc\u30c9":173,"\u4fee\u6b63":[1,43,156,126,148,7,78,28,81],"\u5bfe\u7b56":[71,168],"\u6c38\u7d9a":95,"_obj":80,"[$":109,"\u30da\u30fc\u30b8\u30f3\u30b0":109,"=encoding":192,"\u306f\u3058\u3081":172,configure:[192,153,20],"_clear":137,update:[153,20],"\u5168\u6587\u691c":[3,100],"\u8ffd\u8de1":0,"=path":192,"_unregister":177,"\u30bf\u30b0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":66,target:[149,137,128,101,50],"_index":121,"_untag":110,"-log":192,database:[132,65],"-http":142,"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":9,"\u30c6\u30fc\u30d6\u30eb":[67,3,13,95,46,116,188,79,65,66],"_expander":[116,109],"\u3044\u304f":125,hashtags:188,"\u30a8\u30e9\u30fc":[136,168],"-zlib":192,"\u56fd\u969b\u5316":120,"\u5834\u5408":[136,79,153],"\u958b\u3051\u308b":140,recover:62,"_circle":171,"\u3044\u308b":93,"\u7279\u6b8a":170,"\u4e00\u89a7":[188,2,62,30,193],"_list":[169,106,96,27],min:[143,97,23,166,63],check:[127,62],"\u304b\u3089":[167,130,14,125,154,102,192,90],"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":0,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":66,"-with":192,"\u7279\u5b9a":[180,153],"\u307e\u3068\u3081":153,"-dataset":190,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":193,"_distance":[76,112],"\u30b0\u30eb\u30fc\u30d7":[181,185,152],mroonga:133,libmemcached:180,"\u30ce\u30fc\u30de\u30eb\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":86,"\u7d22\u7528":[3,100],tokenbigramsplitsymbol:85,gzip:55,"\u7d44\u8fbc\u578b":46,executable:98,"\u30b5\u30b8\u30a7\u30b9\u30c8":51,synopstis:190,"_put":8,windows:[102,153],geoindex:188,request:[132,36,104,120],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[109,131],"_in":[35,171],"_ii":87,"\u91cf\u6307\u5b9a\u5b50":181,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":153,"\u30b5\u30fc\u30d0":[133,103,175],"\u30ed\u30fc\u30c9":[188,3,86],"_processes":9,tokenfilterstem:165,"\u3084\u308a":125,keywordn:163,"\u30ec\u30b3\u30fc\u30c9":[109,3],"-po":153,"\u5270\u4f59":152,"_calc":109,"\u30d1\u30c3\u30c1":120,"\u304a\u304f":125,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":153,"\u8ffd\u52a0":[193,153,120],protocol:175,"_cursor":[64,121],"\u3044\u308d\u3044\u308d":13,"\u5c0f\u6570":152,xml:136,"\u6700\u5927":140,ellipsoid:76,"\u4e0d\u7b49\u4fa1":[185,152],grnslap:182,cache:[109,118],"\u9ad8\u5ea6":109,"\u65e5\u6642":13,"-plugins":192,"_equal":70,"\u65b9\u6cd5":[11,153,86,71,168,189,49,115,18,89,15,179,180,120],"\u30ea\u30ea\u30fc\u30b9":[1,153,156,126,148,7,78,28,113,81],rectangle:76,"\u4e00\u6642":95,"\u6295\u7a3f":188,"-server":142,"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":55,wheezy:154,get:132,db:70,"\u5b66\u7fd2":[132,172,18,179,49],clang:180,"_html":[163,33,48],"_limit":[109,9,118],cannot:168,"\u7b97\u5b50":152,"_eval":146,"\u91cd\u307f":[79,86],geo:[35,76,171],"\u8aad\u307f":179,"-httpd":[132,142,9,99,65],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[11,55],"\u5171\u8d77":[18,179,49],"\u5229\u7528":[75,165,9],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[71,85],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":2,"_search":57,"\u7d50\u679c":[71,170,3,131],summary:129,tokenfilterstopword:165,"\u52a0\u7b97":152,"\u6570\u5024":13,contain:70,release:[],"\u64cd\u4f5c":[189,3],"\u3084\u308b":153,"\u5426\u5b9a":[185,152],"\u5236\u5fa1":152,"\u30d5\u30a9\u30ed\u30fc":188,dump:159,"\u4ee3\u5165":152,travis:82,domain:131,arg:70,close:163,"\u8a00\u8a9e":120,"\u65b0\u898f":153,"\u7528\u79d8":153,"\u9006\u5f15\u304d":45,"\u985e\u4f3c":[18,152],"\u7ba1\u7406":[9,103],"\u30e2\u30b8\u30e5\u30fc\u30eb":9,label:109,"_tokenize":47,between:97,"\u305d\u306e":[192,181],"\u7bc4\u56f2":[3,66],"\u4f4d\u7f6e":[93,11,133,75,76,188],"\u8868\u73fe":[70,185,181,152],"_geo":111,javascript:75,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":133,"\u904e\u53bb":125,key:66,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":170,homebrew:[153,90],users:188,"\u30b7\u30d5\u30c8":152,"\u306b\u5bfe\u3059\u308b":79,"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[185,152],"_level":[6,9],"\u6392\u4ed6":152,"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":85,"\u518d\u8d77\u52d5":142,"\u77e5\u308a":153,"-suggest":[132,65,190],"\u306a\u3057":[152,55],equal:70,"-document":20,"\u30b5\u30fc\u30d0\u30fc":[37,142,34],"\u88dc\u6b63":[172,18],"\u8ad6\u7406":[185,152],"\u306a\u3044":[46,125],"\u975e\u308f\u304b\u3061":145,"delete":173,load:59,"\u8a9e\u5f59":[3,100],ci:82,"\u4f5c\u6210":[188,100,3,153,66],point:76,recursive:50,"\u306a\u306b":85,"\u4fdd\u5b58":[13,66],"\u62bd\u51fa":[152,49],header:136,"\u7f6e\u63db":116,"\u95a2\u6570":[162,152,180],"\u6574\u6570":152,"_cancel":104,news:43,table:[109,147,95,96,47,60,106,66],tokenbigramignoreblanksplitsymbol:85,quit:161,"\u6a5f\u80fd":93,"\u30e1\u30e2\u30ea":140,json:[59,136],"\u91cd\u307f\u4ed8\u304d":86,po:153,"\u7528\u3044":[194,75],define:157,"(geopoint":188,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[150,109,178],"-help":192,"_tokenizer":66,"_value":[101,97],"\u5b9f\u884c":[53,70,153,170,9,180],"\u7a2e\u985e":13,"_log":9,"-message":192,"_records":159,ruby:[146,69],gnu:154,"}]":109,"\u5168\u4f53":19,"\u30a2\u30f3\u30ab\u30fc":181,plugin:[22,41,177],"\u30a8\u30b9\u30b1\u30fc\u30d7":[185,181],value:[101,66],"\u5236\u9650":[67,131,86,95,46,170,178],cast:58,near:70,"\u691c\u7d22":[45,109,145,3,92,93,71,133,86,49,185,75,18,188,144,152,79,179,66],"\u5f8c\u65b9\u4e00\u81f4":[185,152],"\u30e9\u30a4\u30d6\u30e9\u30ea":[133,192],"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":55,"\u540c\u3058":71,"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":26,geopoint:188,"\u6982\u8981":[2,12,6,91,9,10,11,5,194,16,17,19,87,22,23,25,33,8,36,37,38,85,41,42,147,47,48,27,54,107,59,60,62,63,64,65,66,69,50,73,74,76,77,80,83,84,94,95,96,98,101,104,106,57,108,109,110,111,86,117,116,114,119,121,122,123,163,127,128,132,133,134,136,137,140,141,143,146,149,151,155,157,159,161,124,165,166,183,169,173,118,97,177,178,181,186,187,139,193],"\u6307\u91dd":125,"\u5fc5\u8981":[110,20],"\u5f15\u6570":[91,143,6,96,98,47,48,137,146,8,147,110,104,149,106,108,109,76,112,155,59,116,60,157,159,63,194,161,65,66,68,69,50,23,166,170,163,73,74,127,173,118,97,128,171,182,83,186,132,134,35,101,140,38,141],"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":153,"_expansion":109,io:50,"in":[101,43],"\u30ec\u30b3\u30fc\u30c9id":95,"\u95be\u5024":71,id:[36,104],".maxfileperproc":140,"\u8a9e\u5f59\u8868":66,"\u5ea7\u6a19\u5024":152,"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":153,fedora:167,"\u4f7f\u3044\u65b9":[91,143,4,12,6,96,98,47,48,49,146,101,147,9,104,10,149,106,108,115,109,76,50,86,155,194,59,116,60,18,157,62,63,169,161,65,66,22,69,27,23,159,166,123,170,163,73,151,74,127,173,118,97,77,128,177,178,179,181,83,186,132,139,134,33,137,8,110,38,141],"_rectangle":35,suggest:155,make:[192,153],"\u4f8b\u3048":125,"\u6210\u679c":120,archive:14,"\u7a4d\u6f14":152,"_filter":[77,186,143],"\u66ff\u3048":3,"-learner":65,messagepack:136,"\u30ad\u30fc\u30ef\u30fc\u30c9":[71,188],"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":153,"_at":187,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":44,keys:109,".po\u30d5\u30a1\u30a4\u30eb":120,"null":152,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7":9,"\u306e\u306b":71,"\u8ab2\u984c":0,"_columns":[116,79,143,109],"_data":119,"\u64ec\u4f3c":61,"\u5834\u6240":[125,178],desctipion:190,"\u7570\u306a\u308b":71,"\u3067\u304d":46,"\u30b9\u30bf\u30a4\u30eb":109,"\u307e\u305f":79,"\u3055\u307e\u3056\u307e\u306a":75,"\u3054\u3068":79,client:98,flags:[47,91,134,175,66],sortby:109,"\u51fa\u529b":[136,109,3,4,120],"\u30c4\u30fc\u30eb":[192,9,103],lcov:180,"-localstatedir":192,"_path":[132,9,65],"\u8868\u793a":3,"-platform":192,solaris:24,"-path":192,less:70,"(v":70,"_tagn":163,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":135,"_ctx":16,"\u5171\u6709":133,"\u30ab\u30e9\u30e0":[67,76,3,131,61,72,79],"_pack":192,"\u547c\u3073\u51fa\u3057":152,"\u5f8c\u65b9":144,"\u3067\u304d\u308b":[70,125],tables:159,loading:9,tokenizer:[169,91],"\u30d1\u30e9\u30e1\u30fc\u30bf":[79,11],"\u30bd\u30fc\u30c8":[75,131],defrag:38,"_selector":157,"\u660e\u793a\u7684":76,"\u62e1\u5f35":92,"\u4e00\u81f4":[145,144],hat:153,match:[116,79,109],"\u7d4c\u5ea6":133,"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":133,"\u8ad6\u7406\u7a4d":185,"\u30e6\u30fc\u30b6\u30fc":[188,125],"\u9759\u7684":[115,180],"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":20,nginx:9,"()":70,"\u30af\u30e9\u30b9":181,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":180,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":191,"\u30bd\u30fc\u30b9":[167,130,14,154,102,192,90],"\u7a4d\u4ee3":152,daemon:98,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":52,"\u5354\u529b":125,"\u691c\u7d22\u4f8b":70,server:98,"-command":11,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[3,55],"_expr":[70,39,160],adjuster:109,"_threshold":109,"\u4f5c\u696d":153,"\u307e\u305f\u3050":79,"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":103,"\u4ed5\u65b9":120,learning:65,centos:130,twitter:[125,153,26],linux:140,"\u30b7\u30b9\u30c6\u30e0":[0,188],"\u5358\u8a9e":152,"_dat":95,"\u4f7f\u7528":140,"\u5727\u7e2e":55,"\u30b3\u30e1\u30f3\u30c8":188,"_sortby":109,"\u5411\u3051":[174,153],"\u5bc6\u9375":153,"\u66f8\u304d":145,freebsd:140,"\u53c2\u7167\u578b":86,comments:188,exit:190,allocate:168,"\u30af\u30a8\u30ea\u30fc":[9,30,185],"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":142,"\u30d3\u30eb\u30c9":[167,130,153,14,154,102,192,90],"\u5206\u3051":145,run:[129,20],"\u5168\u6587\u691c\u7d22":185,"\u53c2\u8003":[2,6,95,96,69,48,47,91,104,10,146,108,109,155,194,59,116,157,160,169,66,22,165,27,123,163,186,173,118,77,177,178,36,134,33,190,136,8,193],"\u3046\u307e\u304f":125,"\u30c7\u30d0\u30c3\u30ac":180,"_most":187,"\u4f9d\u5b58":192,"\u3042\u308a":[185,152],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":55,"\uff08personal":14,"\u5927\u306a\u308a":[185,152],tokenbigramsplitsymbolalpha:85,output:[109,143],"\u96c6\u8a08":133,from:65,post:[9,55],"_query":9,"\u6319\u52d5":145,by:9,"\u5b9f\u73fe":70,"_border":[143,97,23,166,63],"package":14,column:[163,73,48,74,60,97,96],"_escalation":[25,109],http:[37,142,195,4,103],location:76,range:77,os:90,"\u524d\u65b9\u4e00\u81f4":[179,185,152],tokentrigram:85,ppa:14,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":55,"_reopen":194,"\u30ea\u30af\u30a8\u30b9\u30c8id":36,"\u5b9f\u9a13":28,"\u3053\u3061\u3089":125,"\u30ad\u30e3\u30c3\u30b7\u30e5":[109,9],"_cache":[17,9],"\u5831\u544a":0,"\u524d\u65b9":144,"\u7279\u6709":9,"\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":180,log:[6,150,8,194,65],"\u8907\u6570":[79,131,55],"_range":143,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":170,"\u5168\u6587":[71,133,75,3,79],"_prefix":192,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":188,"\u30d0\u30fc\u30b8\u30e7\u30f3":[156,1,11,148,153],"_remove":[147,73,63],"_hook":94,redmine:125,"\u30ed\u30b0":194,"\u5c55\u958b":30,"\u7b49\u4fa1":[185,152],"\u63d0\u6848":[132,172,49],"cpu\u30b3\u30a2":55,"_db":84,"_no":95,files:[65,190],shutdown:141,tokenbigramignoreblanksplitsymbolalphadigit:85,"_full":163,"\u6027\u80fd":[9,55],memory:168,"\u72ec\u81ea":152,"_flush":50,"\u7b97\u8853":152,"\u30b8\u30aa\u30b5\u30fc\u30c1":45,"with":20,"_load":69,"_types":109,pull:120,"_or":97,"default":[11,66],"\u69cb\u7bc9":[115,180],"\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba":153,limit:109,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":133,"\u304a\u3055\u3089\u3044":125,highlight:[163,48],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[41,42,5,94,87,107,54,57,117,16,17,114,19,25,119,121,122,183,124,64,111,80,84,39],"\u304a\u77e5\u3089":[78,1,156,148],similar:70,tokenmecab:85,"\u30d5\u30a1\u30a4\u30eb":[53,70,153,20,140,178,55,120],"\u6587\u5b57":181,"\u611f\u8b1d":[1,156,126,148,7,78,28,113,81],tokendelimitnull:85,bigram:188,"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":153,approximate:76,command:11,"\u69d8\u3005":180,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":188,enable:20,"\u56de\u907f":168,file:98,"\u70b9\u6570":152,"\u7279\u5fb4":[133,95],"\u53c2\u7167":[13,133,175,45],"\u30b9\u30c8\u30ec\u30fc\u30b8":133,tokenbigramignoreblank:85,"\u95a2\u4fc2":[45,109,192],"_target":109,"\u4ee3\u5165\u5f0f":185,"\u3068\u308a":125,"\u914d\u5217":152,"\u3042\u3052\u308b":71,"\u306e\u307f":[180,153],grn:[42,94,87,107,54,57,117,16,17,114,160,25,119,70,121,122,183,124,64,111,80,84,39],"\u8ee2\u7f6e":133,tokenbigramsplitsymbolalphadigit:85,"_type":[76,183,107,175,66],"=number":192,truncate:128,"\u30c7\u30fc\u30bf":[3,13,188,46,49,179,66],worker:9,"\u5909\u66f4\u70b9":153,"\u4e0a\u9650":67,"\u6307\u5b9a":[76,3,185,153,46,11,79],"_auto":9,"\u547d\u4ee4":170,"\u65b0\u3057\u3044":120,"_map":140,scorer:[123,187,75,109,12],"\u4f7f\u3046":[76,9],"\u30b9\u30b3\u30a2\u30e9\u30fc":12,drilldown:109,"-latest":153,"\u3088\u3046":[18,179,49],debian:[154,153],"\u4f5c\u308a\u65b9":86,"_count":[140,23],"\u4f7f\u3044":145,"\u6b63\u898f":[181,185,152],macports:90,"\u30c7\u30fc\u30e2\u30f3":175,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[67,45,79,181,115],"_offset":109,queryexpandertsv:178,"_memory":140,"-package":192,oracle:24,"\u539f\u56e0":71,"-threshold":192,tokenbigramignoreblanksplitsymbolalpha:85}})
1
+ Search.setIndex({envversion:46,filenames:["characteristic","client","community","contribution","contribution/development","contribution/development/build","contribution/development/build/unix_autotools","contribution/development/build/unix_cmake","contribution/development/build/windows_cmake","contribution/development/com","contribution/development/cooperation","contribution/development/query","contribution/development/release","contribution/development/repository","contribution/development/test","contribution/documentation","contribution/documentation/c-api","contribution/documentation/i18n","contribution/documentation/introduction","contribution/report","development","development/travis-ci","index","install","install/centos","install/debian","install/fedora","install/mac_os_x","install/others","install/solaris","install/ubuntu","install/windows","limitations","news","news/0.x","news/1.0.x","news/1.1.x","news/1.2.x","news/1.3.x","news/2.x","news/3.x","news/4.x","news/senna","reference","reference/api","reference/api/global_configurations","reference/api/grn_cache","reference/api/grn_column","reference/api/grn_command_version","reference/api/grn_content_type","reference/api/grn_ctx","reference/api/grn_db","reference/api/grn_encoding","reference/api/grn_expr","reference/api/grn_geo","reference/api/grn_hook","reference/api/grn_ii","reference/api/grn_index_cursor","reference/api/grn_info","reference/api/grn_match_escalation","reference/api/grn_obj","reference/api/grn_proc","reference/api/grn_search","reference/api/grn_table","reference/api/grn_table_cursor","reference/api/grn_thread","reference/api/grn_type","reference/api/grn_user_data","reference/api/overview","reference/api/plugin","reference/cast","reference/column","reference/columns/index","reference/columns/pseudo","reference/columns/scalar","reference/columns/vector","reference/command","reference/command/command_version","reference/command/output_format","reference/command/request_id","reference/command/return_code","reference/commands/cache_limit","reference/commands/check","reference/commands/clearlock","reference/commands/column_copy","reference/commands/column_create","reference/commands/column_list","reference/commands/column_remove","reference/commands/column_rename","reference/commands/database_unmap","reference/commands/define_selector","reference/commands/defrag","reference/commands/delete","reference/commands/dump","reference/commands/io_flush","reference/commands/load","reference/commands/lock_clear","reference/commands/log_level","reference/commands/log_put","reference/commands/log_reopen","reference/commands/logical_count","reference/commands/logical_parameters","reference/commands/logical_range_filter","reference/commands/logical_select","reference/commands/logical_shard_list","reference/commands/logical_table_remove","reference/commands/normalize","reference/commands/normalizer_list","reference/commands/object_exist","reference/commands/plugin_register","reference/commands/plugin_unregister","reference/commands/quit","reference/commands/range_filter","reference/commands/register","reference/commands/request_cancel","reference/commands/ruby_eval","reference/commands/ruby_load","reference/commands/select","reference/commands/shutdown","reference/commands/status","reference/commands/suggest","reference/commands/table_create","reference/commands/table_list","reference/commands/table_remove","reference/commands/table_rename","reference/commands/table_tokenize","reference/commands/thread_limit","reference/commands/tokenize","reference/commands/tokenizer_list","reference/commands/truncate","reference/executables","reference/executables/grndb","reference/executables/grnslap","reference/executables/groonga","reference/executables/groonga-benchmark","reference/executables/groonga-httpd","reference/executables/groonga-server-http","reference/executables/groonga-suggest-create-dataset","reference/executables/groonga-suggest-httpd","reference/executables/groonga-suggest-learner","reference/function","reference/functions/between","reference/functions/edit_distance","reference/functions/geo_distance","reference/functions/geo_in_circle","reference/functions/geo_in_rectangle","reference/functions/highlight_full","reference/functions/highlight_html","reference/functions/html_untag","reference/functions/in_values","reference/functions/now","reference/functions/query","reference/functions/rand","reference/functions/snippet_html","reference/functions/sub_filter","reference/functions/vector_size","reference/grn_expr","reference/grn_expr/query_syntax","reference/grn_expr/script_syntax","reference/indexing","reference/log","reference/normalizers","reference/operations","reference/operations/geolocation_search","reference/output","reference/query_expanders","reference/query_expanders/tsv","reference/regular_expression","reference/scorer","reference/scorers/scorer_tf_at_most","reference/scorers/scorer_tf_idf","reference/scoring_note","reference/sharding","reference/suggest","reference/suggest/completion","reference/suggest/correction","reference/suggest/introduction","reference/suggest/suggestion","reference/tables","reference/token_filters","reference/tokenizers","reference/tuning","reference/types","server","server/gqtp","server/http","server/http/comparison","server/http/groonga","server/http/groonga-httpd","server/memcached","server/package","spec","spec/gqtp","spec/search","troubleshooting","troubleshooting/different_results_with_the_same_keyword","troubleshooting/mmap_cannot_allocate_memory","tutorial","tutorial/data","tutorial/drilldown","tutorial/index","tutorial/introduction","tutorial/lexicon","tutorial/match_columns","tutorial/micro_blog","tutorial/network","tutorial/patricia_trie","tutorial/query_expansion","tutorial/search"],objects:{"":{"--address":[133,0,1,"cmdoption--address"],"--bind-address":[133,0,1,"cmdoption--bind-address"],"--cache-limit":[133,0,1,"cmdoption--cache-limit"],"--config-path":[133,0,1,"cmdoption--config-path"],"--daemon":[139,0,1,"cmdoption--daemon"],"--default-match-escalation-threshold":[133,0,1,"cmdoption--default-match-escalation-threshold"],"--dir":[134,0,1,"cmdoption--dir"],"--disable-max-fd-check":[138,0,1,"cmdoption--disable-max-fd-check"],"--document-root":[133,0,1,"cmdoption--document-root"],"--encoding":[133,0,1,"cmdoption--encoding"],"--ftp":[134,0,1,"cmdoption--ftp"],"--groonga":[134,0,1,"cmdoption--groonga"],"--help":[133,0,1,"cmdoption--help"],"--host":[134,0,1,"cmdoption--host"],"--log-base-path":[139,0,1,"cmdoption--log-base-path"],"--log-level":[139,0,1,"cmdoption--log-level"],"--log-output-dir":[134,0,1,"cmdoption--log-output-dir"],"--log-path":[139,0,1,"cmdoption--log-path"],"--log-rotate-threshold-size":[133,0,1,"cmdoption--log-rotate-threshold-size"],"--max-threads":[133,0,1,"cmdoption--max-threads"],"--n-lines-per-log-file":[138,0,1,"cmdoption--n-lines-per-log-file"],"--n-threads":[138,0,1,"cmdoption--n-threads"],"--pid-path":[133,0,1,"cmdoption--pid-path"],"--port":[138,0,1,"cmdoption--port"],"--protocol":[134,0,1,"cmdoption--protocol"],"--query-log-path":[133,0,1,"cmdoption--query-log-path"],"--query-log-rotate-threshold-size":[133,0,1,"cmdoption--query-log-rotate-threshold-size"],"--receive-endpoint":[139,0,1,"cmdoption--receive-endpoint"],"--send-endpoint":[139,0,1,"cmdoption--send-endpoint"],"--server-id":[133,0,1,"cmdoption--server-id"],"-P":[132,0,1,"cmdoption-P"],"-a":[133,0,1,"cmdoption-a"],"-c":[133,0,1,"cmdoption-c"],"-d":[139,0,1,"cmdoption-d"],"-e":[133,0,1,"cmdoption-e"],"-h":[133,0,1,"cmdoption-h"],"-i":[134,0,1,"cmdoption-i"],"-l":[139,0,1,"cmdoption-l"],"-m":[132,0,1,"cmdoption-m"],"-n":[133,0,1,"cmdoption-n"],"-p":[138,0,1,"cmdoption-p"],"-r":[139,0,1,"cmdoption-r"],"-s":[139,0,1,"cmdoption-s"],"-t":[138,0,1,"cmdoption-t"],GRN_COLUMN_NAME_ID:[47,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_COLUMN_NAME_ID_LEN:[47,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],GRN_COLUMN_NAME_KEY:[47,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_KEY_LEN:[47,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],GRN_COLUMN_NAME_NSUBRECS:[47,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],GRN_COLUMN_NAME_NSUBRECS_LEN:[47,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],GRN_COLUMN_NAME_SCORE:[47,3,1,"c.GRN_COLUMN_NAME_SCORE"],GRN_COLUMN_NAME_SCORE_LEN:[47,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE:[47,3,1,"c.GRN_COLUMN_NAME_VALUE"],GRN_COLUMN_NAME_VALUE_LEN:[47,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],GRN_COMMAND_VERSION_MAX:[48,3,1,"c.GRN_COMMAND_VERSION_MAX"],GRN_COMMAND_VERSION_MIN:[48,3,1,"c.GRN_COMMAND_VERSION_MIN"],GRN_COMMAND_VERSION_STABLE:[48,3,1,"c.GRN_COMMAND_VERSION_STABLE"],GRN_OBJ_APPEND:[60,3,1,"c.GRN_OBJ_APPEND"],GRN_OBJ_COMPARE:[60,3,1,"c.GRN_OBJ_COMPARE"],GRN_OBJ_DECR:[60,3,1,"c.GRN_OBJ_DECR"],GRN_OBJ_GET:[60,3,1,"c.GRN_OBJ_GET"],GRN_OBJ_INCR:[60,3,1,"c.GRN_OBJ_INCR"],GRN_OBJ_LOCK:[60,3,1,"c.GRN_OBJ_LOCK"],GRN_OBJ_PREPEND:[60,3,1,"c.GRN_OBJ_PREPEND"],GRN_OBJ_SET:[60,3,1,"c.GRN_OBJ_SET"],GRN_OBJ_SET_MASK:[60,3,1,"c.GRN_OBJ_SET_MASK"],GRN_OBJ_UNLOCK:[60,3,1,"c.GRN_OBJ_UNLOCK"],GRN_PLUGIN_ERROR:[69,3,1,"c.GRN_PLUGIN_ERROR"],GRN_PLUGIN_FIN:[69,1,1,"c.GRN_PLUGIN_FIN"],GRN_PLUGIN_FREE:[69,3,1,"c.GRN_PLUGIN_FREE"],GRN_PLUGIN_INIT:[69,1,1,"c.GRN_PLUGIN_INIT"],GRN_PLUGIN_LOG:[69,3,1,"c.GRN_PLUGIN_LOG"],GRN_PLUGIN_MALLOC:[69,3,1,"c.GRN_PLUGIN_MALLOC"],GRN_PLUGIN_REALLOC:[69,3,1,"c.GRN_PLUGIN_REALLOC"],GRN_PLUGIN_REGISTER:[69,1,1,"c.GRN_PLUGIN_REGISTER"],command:[133,0,1,"cmdoption-arg-command"],db:[134,0,1,"cmdoption-arg-db"],dest:[133,0,1,"cmdoption-arg-dest"],grn_builtin_type:[66,2,1,"c.grn_builtin_type"],grn_cache:[46,2,1,"c.grn_cache"],grn_cache_close:[46,1,1,"c.grn_cache_close"],grn_cache_current_get:[46,1,1,"c.grn_cache_current_get"],grn_cache_current_set:[46,1,1,"c.grn_cache_current_set"],grn_cache_get_max_n_entries:[46,1,1,"c.grn_cache_get_max_n_entries"],grn_cache_open:[46,1,1,"c.grn_cache_open"],grn_cache_set_max_n_entries:[46,1,1,"c.grn_cache_set_max_n_entries"],grn_column_create:[47,1,1,"c.grn_column_create"],grn_column_index:[47,1,1,"c.grn_column_index"],grn_column_index_update:[47,1,1,"c.grn_column_index_update"],grn_column_name:[47,1,1,"c.grn_column_name"],grn_column_rename:[47,1,1,"c.grn_column_rename"],grn_column_table:[47,1,1,"c.grn_column_table"],grn_column_truncate:[47,1,1,"c.grn_column_truncate"],grn_command_version:[48,2,1,"c.grn_command_version"],grn_content_type:[49,2,1,"c.grn_content_type"],grn_ctx:[50,2,1,"c.grn_ctx"],grn_ctx_at:[50,1,1,"c.grn_ctx_at"],grn_ctx_close:[50,1,1,"c.grn_ctx_close"],grn_ctx_db:[50,1,1,"c.grn_ctx_db"],grn_ctx_fin:[50,1,1,"c.grn_ctx_fin"],grn_ctx_get:[50,1,1,"c.grn_ctx_get"],grn_ctx_get_all_tables:[50,1,1,"c.grn_ctx_get_all_tables"],grn_ctx_get_command_version:[50,1,1,"c.grn_ctx_get_command_version"],grn_ctx_get_match_escalation_threshold:[59,1,1,"c.grn_ctx_get_match_escalation_threshold"],grn_ctx_get_output_type:[50,1,1,"c.grn_ctx_get_output_type"],grn_ctx_init:[50,1,1,"c.grn_ctx_init"],grn_ctx_open:[50,1,1,"c.grn_ctx_open"],grn_ctx_set_command_version:[50,1,1,"c.grn_ctx_set_command_version"],grn_ctx_set_finalizer:[50,1,1,"c.grn_ctx_set_finalizer"],grn_ctx_set_match_escalation_threshold:[59,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_ctx_set_output_type:[50,1,1,"c.grn_ctx_set_output_type"],grn_ctx_use:[50,1,1,"c.grn_ctx_use"],grn_db:[51,2,1,"c.grn_db"],grn_db_create:[51,1,1,"c.grn_db_create"],grn_db_create_optarg:[51,2,1,"c.grn_db_create_optarg"],grn_db_open:[51,1,1,"c.grn_db_open"],grn_db_recover:[51,1,1,"c.grn_db_recover"],grn_db_touch:[51,1,1,"c.grn_db_touch"],grn_db_unmap:[51,1,1,"c.grn_db_unmap"],grn_encoding:[52,2,1,"c.grn_encoding"],grn_encoding_parse:[52,1,1,"c.grn_encoding_parse"],grn_encoding_to_string:[52,1,1,"c.grn_encoding_to_string"],grn_expr_add_var:[53,1,1,"c.grn_expr_add_var"],grn_expr_alloc:[53,1,1,"c.grn_expr_alloc"],grn_expr_append_const:[53,1,1,"c.grn_expr_append_const"],grn_expr_append_const_int:[53,1,1,"c.grn_expr_append_const_int"],grn_expr_append_const_str:[53,1,1,"c.grn_expr_append_const_str"],grn_expr_append_op:[53,1,1,"c.grn_expr_append_op"],grn_expr_close:[53,1,1,"c.grn_expr_close"],grn_expr_compile:[53,1,1,"c.grn_expr_compile"],grn_expr_create:[53,1,1,"c.grn_expr_create"],grn_expr_exec:[53,1,1,"c.grn_expr_exec"],grn_expr_get_keywords:[53,1,1,"c.grn_expr_get_keywords"],grn_expr_get_var_by_offset:[53,1,1,"c.grn_expr_get_var_by_offset"],grn_expr_syntax_escape:[53,1,1,"c.grn_expr_syntax_escape"],grn_expr_syntax_escape_query:[53,1,1,"c.grn_expr_syntax_escape_query"],grn_fin:[68,1,1,"c.grn_fin"],grn_geo_cursor_next:[54,1,1,"c.grn_geo_cursor_next"],grn_geo_cursor_open_in_rectangle:[54,1,1,"c.grn_geo_cursor_open_in_rectangle"],grn_geo_estimate_in_rectangle:[54,1,1,"c.grn_geo_estimate_in_rectangle"],grn_geo_point:[54,2,1,"c.grn_geo_point"],grn_geo_select_in_rectangle:[54,1,1,"c.grn_geo_select_in_rectangle"],grn_get_default_command_version:[48,1,1,"c.grn_get_default_command_version"],grn_get_default_encoding:[52,1,1,"c.grn_get_default_encoding"],grn_get_default_match_escalation_threshold:[59,1,1,"c.grn_get_default_match_escalation_threshold"],grn_get_lock_timeout:[45,1,1,"c.grn_get_lock_timeout"],grn_hook_entry:[55,2,1,"c.grn_hook_entry"],grn_ii:[56,2,1,"c.grn_ii"],grn_ii_buffer:[56,2,1,"c.grn_ii_buffer"],grn_ii_buffer_append:[56,1,1,"c.grn_ii_buffer_append"],grn_ii_buffer_close:[56,1,1,"c.grn_ii_buffer_close"],grn_ii_buffer_commit:[56,1,1,"c.grn_ii_buffer_commit"],grn_ii_buffer_open:[56,1,1,"c.grn_ii_buffer_open"],grn_index_cursor_next:[57,1,1,"c.grn_index_cursor_next"],grn_index_cursor_open:[57,1,1,"c.grn_index_cursor_open"],grn_info_type:[58,2,1,"c.grn_info_type"],grn_init:[68,1,1,"c.grn_init"],grn_obj:[60,2,1,"c.grn_obj"],grn_obj_add_hook:[55,1,1,"c.grn_obj_add_hook"],grn_obj_check:[60,1,1,"c.grn_obj_check"],grn_obj_clear_lock:[60,1,1,"c.grn_obj_clear_lock"],grn_obj_close:[60,1,1,"c.grn_obj_close"],grn_obj_column:[60,1,1,"c.grn_obj_column"],grn_obj_db:[51,1,1,"c.grn_obj_db"],grn_obj_defrag:[60,1,1,"c.grn_obj_defrag"],grn_obj_delete_by_id:[60,1,1,"c.grn_obj_delete_by_id"],grn_obj_delete_hook:[55,1,1,"c.grn_obj_delete_hook"],grn_obj_expire:[60,1,1,"c.grn_obj_expire"],grn_obj_get_element_info:[58,1,1,"c.grn_obj_get_element_info"],grn_obj_get_hook:[55,1,1,"c.grn_obj_get_hook"],grn_obj_get_info:[58,1,1,"c.grn_obj_get_info"],grn_obj_get_nhooks:[55,1,1,"c.grn_obj_get_nhooks"],grn_obj_get_range:[60,1,1,"c.grn_obj_get_range"],grn_obj_get_value:[60,1,1,"c.grn_obj_get_value"],grn_obj_get_values:[60,1,1,"c.grn_obj_get_values"],grn_obj_id:[60,1,1,"c.grn_obj_id"],grn_obj_is_builtin:[60,1,1,"c.grn_obj_is_builtin"],grn_obj_is_locked:[60,1,1,"c.grn_obj_is_locked"],grn_obj_lock:[60,1,1,"c.grn_obj_lock"],grn_obj_name:[60,1,1,"c.grn_obj_name"],grn_obj_path:[60,1,1,"c.grn_obj_path"],grn_obj_path_by_id:[60,1,1,"c.grn_obj_path_by_id"],grn_obj_reinit:[60,1,1,"c.grn_obj_reinit"],grn_obj_remove:[60,1,1,"c.grn_obj_remove"],grn_obj_rename:[60,1,1,"c.grn_obj_rename"],grn_obj_search:[62,1,1,"c.grn_obj_search"],grn_obj_set_element_info:[58,1,1,"c.grn_obj_set_element_info"],grn_obj_set_finalizer:[61,1,1,"c.grn_obj_set_finalizer"],grn_obj_set_info:[58,1,1,"c.grn_obj_set_info"],grn_obj_set_value:[60,1,1,"c.grn_obj_set_value"],grn_obj_unlink:[60,1,1,"c.grn_obj_unlink"],grn_obj_unlock:[60,1,1,"c.grn_obj_unlock"],grn_obj_user_data:[67,1,1,"c.grn_obj_user_data"],grn_plugin_charlen:[69,1,1,"c.grn_plugin_charlen"],grn_plugin_command_create:[69,1,1,"c.grn_plugin_command_create"],grn_plugin_expr_var_init:[69,1,1,"c.grn_plugin_expr_var_init"],grn_plugin_isspace:[69,1,1,"c.grn_plugin_isspace"],grn_plugin_mutex:[69,2,1,"c.grn_plugin_mutex"],grn_plugin_mutex_close:[69,1,1,"c.grn_plugin_mutex_close"],grn_plugin_mutex_lock:[69,1,1,"c.grn_plugin_mutex_lock"],grn_plugin_mutex_open:[69,1,1,"c.grn_plugin_mutex_open"],grn_plugin_mutex_unlock:[69,1,1,"c.grn_plugin_mutex_unlock"],grn_plugin_proc_alloc:[69,1,1,"c.grn_plugin_proc_alloc"],grn_plugin_proc_get_var:[69,1,1,"c.grn_plugin_proc_get_var"],grn_plugin_proc_get_var_by_offset:[69,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_plugin_win32_base_dir:[69,1,1,"c.grn_plugin_win32_base_dir"],grn_proc_create:[61,1,1,"c.grn_proc_create"],grn_proc_func:[61,2,1,"c.grn_proc_func"],grn_proc_get_info:[61,1,1,"c.grn_proc_get_info"],grn_proc_type:[61,2,1,"c.grn_proc_type"],grn_search_optarg:[62,2,1,"c.grn_search_optarg"],grn_set_default_command_version:[48,1,1,"c.grn_set_default_command_version"],grn_set_default_encoding:[52,1,1,"c.grn_set_default_encoding"],grn_set_default_match_escalation_threshold:[59,1,1,"c.grn_set_default_match_escalation_threshold"],grn_set_lock_timeout:[45,1,1,"c.grn_set_lock_timeout"],grn_table_add:[63,1,1,"c.grn_table_add"],grn_table_at:[63,1,1,"c.grn_table_at"],grn_table_columns:[63,1,1,"c.grn_table_columns"],grn_table_create:[63,1,1,"c.grn_table_create"],grn_table_cursor:[64,2,1,"c.grn_table_cursor"],grn_table_cursor_close:[64,1,1,"c.grn_table_cursor_close"],grn_table_cursor_delete:[64,1,1,"c.grn_table_cursor_delete"],grn_table_cursor_get_key:[64,1,1,"c.grn_table_cursor_get_key"],grn_table_cursor_get_value:[64,1,1,"c.grn_table_cursor_get_value"],grn_table_cursor_next:[64,1,1,"c.grn_table_cursor_next"],grn_table_cursor_open:[64,1,1,"c.grn_table_cursor_open"],grn_table_cursor_set_value:[64,1,1,"c.grn_table_cursor_set_value"],grn_table_cursor_table:[64,1,1,"c.grn_table_cursor_table"],grn_table_delete:[63,1,1,"c.grn_table_delete"],grn_table_delete_by_id:[63,1,1,"c.grn_table_delete_by_id"],grn_table_difference:[63,1,1,"c.grn_table_difference"],grn_table_get:[63,1,1,"c.grn_table_get"],grn_table_get_key:[63,1,1,"c.grn_table_get_key"],grn_table_group:[63,1,1,"c.grn_table_group"],grn_table_group_flags:[63,2,1,"c.grn_table_group_flags"],grn_table_group_result:[63,2,1,"c.grn_table_group_result"],grn_table_lcp_search:[63,1,1,"c.grn_table_lcp_search"],grn_table_rename:[63,1,1,"c.grn_table_rename"],grn_table_setoperation:[63,1,1,"c.grn_table_setoperation"],grn_table_size:[63,1,1,"c.grn_table_size"],grn_table_sort:[63,1,1,"c.grn_table_sort"],grn_table_sort_flags:[63,2,1,"c.grn_table_sort_flags"],grn_table_sort_key:[63,2,1,"c.grn_table_sort_key"],grn_table_truncate:[63,1,1,"c.grn_table_truncate"],grn_table_update:[63,1,1,"c.grn_table_update"],grn_table_update_by_id:[63,1,1,"c.grn_table_update_by_id"],grn_thread_get_limit:[65,1,1,"c.grn_thread_get_limit"],grn_thread_get_limit_func:[65,2,1,"c.grn_thread_get_limit_func"],grn_thread_set_get_limit_func:[65,1,1,"c.grn_thread_set_get_limit_func"],grn_thread_set_limit:[65,1,1,"c.grn_thread_set_limit"],grn_thread_set_limit_func:[65,2,1,"c.grn_thread_set_limit_func"],grn_thread_set_set_limit_func:[65,1,1,"c.grn_thread_set_set_limit_func"],grn_type_create:[66,1,1,"c.grn_type_create"],grn_user_data:[67,2,1,"c.grn_user_data"],script:[134,0,1,"cmdoption-arg-script"]},grn_db_create_optarg:{builtin_type_names:[51,4,1,"c.grn_db_create_optarg.builtin_type_names"],n_builtin_type_names:[51,4,1,"c.grn_db_create_optarg.n_builtin_type_names"]}},objnames:{"0":["std","option","option"],"1":["c","function","C \u306e\u95a2\u6570"],"2":["c","type","C \u306e\u30c7\u30fc\u30bf\u578b"],"3":["c","macro","C \u306e\u30de\u30af\u30ed"],"4":["c","member","C \u306e\u30e1\u30f3\u30d0\u5909\u6570"]},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},terms:{"!!":[95,135,180,200,204],"!(n":158,"!)":135,"!\"":[39,78,103,117,127,135,157,158,159,168,180,186,198,200,201,203,204,205],"!\\":158,"!condition":158,"!xxx":41,"#'":133,"#[":33,"#arguments":33,"#command":33,"#delete":33,"#each":33,"#groonga":[166,204],"#group":33,"#index":33,"#inspect":33,"#key":33,"#name":33,"#proxy":135,"#remove":33,"#scalar":33,"#set":134,"#value":33,"#vector":33,"#with":33,"#worker":135,"#{":160,"#{l":160,"$(":[24,25,26,27,30],"$groonga":12,"$home":12,"$prefix":37,"${":[17,103,117,151,158,167,172,181],"%'":41,"%\"":167,"%\\":31,"%post":39,"& (":158,"& _":208,"& b":158,"& x":41,"& y":40,"&!":158,"&&":[33,117,154,158,195,206],"&..":205,"&arg":167,"&filter":114,"&gt":[146,147,153],"&lt":[146,147,153],"&q":138,"&query":205,"&request":114,"&s":138,"'(":133,"')":[41,95,132,133],"',":[41,60,137,177],"'-":[40,133],"'.":[17,60],"'..":40,"';":133,"'='":133,"'>":148,"'\"":[39,40],"'\u3002":133,"'alice":157,"'column":39,"'config":133,"'fixed":33,"'grn":52,"'hay":11,"'haystack":11,"'ja":17,"'localhost":[132,133],"'m":[159,179,203,204],"'mroonga":151,"'n":133,"'needle":11,"'now":204,"'or":39,"'pid":133,"'query":39,"'s":[17,78,95,103,117,133,154,157,158,159,160,168,170,184],"'t":[45,49,50,51,53,79,96,133,135,168,170,171,177],"'user":151,"'ve":204,"'vector":33,"(!":11,"(&":[33,50,53],"('":[73,85,95,133,201],"((":[75,117],"((x":182,"()":[],"(-":158,"(.":12,"(..":40,"(<":11,"(=":[11,80,158],"(>":11,"([":152,"(\"":[39,40,52,114,133,143,146,147,151,153,201],"(\u300c":12,"(_":[33,120,158,174,175,177],"(a":21,"(age":141,"(argument":158,"(arugment":158,"(body":[146,147],"(byte":[47,63],"(cmp":41,"(column":[41,141,146,147,153,168],"(comments":154,"(content":[117,148,153,168],"(ctx":[11,46,47,50,53],"(cutter":14,"(cve":41,"(database":196,"(debian":190,"(default":33,"(drilldown":73,"(fedora":190,"(get":132,"(grn":[33,50,53],"(groonga":65,"(html":148,"(init":50,"(int":65,"(keyword":53,"(location":[143,200,204,208],"(match":151,"(message":170,"(mroonga":166,"(msghdr":33,"(name":69,"(news":12,"(nginx":190,"(null":41,"(packages":12,"(point":[143,144,145],"(popular":117,"(pos":[144,145],"(ptr":35,"(q":65,"(r":[134,167],"(scan":14,"(scope":154,"(score":33,"(select":158,"(string":142,"(tab":166,"(table":41,"(tag":149,"(tags":155,"(target":[149,155],"(term":[168,170],"(title":[40,142,168],"(uint":65,"(void":65,"(wgs":208,"(windows":134,"(x":41,"(xxx":40,"({":138,")'":[120,146,147,153,154,155,157,158,174,175,177,200,204,208],"))":[33,117,158,166],"),":[40,85,168,170,171],")-":12,").":[12,133,138,153,168,169,170,190],")..":12,")/":33,"):":[12,190,201],");":[11,33,46,47,50,53,65],")=":196,")\"":[40,117,148,153,157,168,170,207],")\\":167,")\u3001":41,")\u300d":133,")\u3059\u3079\u3066":141,")]":40,")grn":33,")groonga":166,")mroonga":166,")offset":[63,64],")senna":166,"*'":[103,117],"**":[47,51,60,61,64,98],"***":98,"*/":[50,53,65,68],"*\"":[33,36,41,103,117,203],"*added":63,"*bottom":54,"*bsd":[7,8,35,37],"*buffer":60,"*cache":46,"*column":47,"*ctx":[46,47,50,51,53,54,55,56,57,58,59,60,61,62,63,64,66,67,69],"*cursor":54,"*data":[55,65],"*db":[50,51,60],"*dest":63,"*escaped":53,"*expr":53,"*fin":61,"*func":[50,61],"*grn":65,"*ic":57,"*ii":56,"*index":[54,57],"*init":61,"*key":63,"*keybuf":63,"*keys":63,"*keywords":53,"*max":64,"*min":64,"*mutex":69,"*name":[47,50,52,53,60,61,63,66,69],"*namebuf":[47,60],"*newvalue":47,"*next":61,"*nvars":61,"*obj":[47,51,53,55,58,60,61,62,67],"*oldvalue":47,"*optarg":[51,62],"*path":[47,51,63],"*proc":55,"*query":[53,62],"*res":[54,62,63],"*result":63,"*results":63,"*s":41,"*section":47,"*src":63,"*str":[53,69],"*string":53,"*table":[47,60,63,64],"*tables":50,"*target":53,"*tc":[57,64],"*tid":57,"*top":54,"*type":47,"*user":[61,69],"*value":[56,58,60,63,64],"*valuebuf":58,"*var":69,"*vars":[61,69],"+ \"":[33,39],"+ y":182,"++":[0,6,7,12,24,26,28,33,37,38,41,50,53,65,133,184],"+-":[53,135],"+a":157,"+c":133,"+ff":[33,161],"+ff0":33,"+ffef":180,"+fff":180,"+fffe":127,"+or":167,", \"":[75,146,203],", {":[135,186],",'":[182,198],",*":102,",.":12,",..":[95,122],",[":195,",[\"":195,",\"":[33,41,82,93,164,200,203,204],",\"domain":199,",\"http":198,",\"link":198,",\"links":198,",\"location":[200,208],",\"tags":200,",\"title":201,",\\\"":95,",\n#":[75,89,103,117,125,127,151,157,158,168,180,198,200,201,204,205,208],",\n[":[33,93,153],",\n]":[117,154,195,198,206,208],",\n{":[75,93,100,103,117,120,135,149,151,154,157,158,161,167,168,170,174,175,177,179,199,203,206],",_":[75,103,117,120,151,158,199,200,201,204,208],",{":[133,134,164],"- \"":41,"-(":[12,158],"-+":135,"--":[8,12,31,34,35,36,37,39,40,41,45,46,47,48,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65,66,67,69,75,100,103,117,125,127,133,134,135,146,147,148,149,151,153,155,158,166,167,168,170,177,179,195,199,200,204,207,208],"->":[33,35],"-\"":125,"-_":[117,168,170],"-a":[39,133,157],"-add":51,"-address":[33,37,39,133],"-adjuster":[75,117],"-admin":39,"-aki":41,"-alloc":119,"-analyzer":[37,39],"-api":16,"-appearing":168,"-apt":30,"-autoreconf":12,"-base":[138,139],"-benchmark":[],"-binary":[135,186],"-bind":[33,37,39,133],"-blog":204,"-build":14,"-bye":[103,117,125,157,158,179],"-c":[24,26,133,192],"-cache":[33,40,133],"-check":[35,37,138],"-chroot":12,"-ci":[40,41],"-ci\u4e0a":40,"-client":184,"-code":[12,41],"-command":[],"-commnad":77,"-common":[30,39],"-conditional":37,"-config":[28,34,35,37,39,133],"-count":119,"-create":[],"-cutter":12,"-d":[133,135,138,139,189,192,205],"-daemon":[138,139],"-databases":[86,88,122,124,138,192,201,205],"-dataset":[],"-db":38,"-dcmake":[7,8],"-dd":[158,160],"-deafult":37,"-deb":12,"-debug":[6,35],"-default":[],"-dev":[2,12,14,25,30,33,37,39,40,41],"-devel":[24,26],"-dgrn":[7,8],"-dir":134,"-directory":39,"-disable":[35,37,41,138],"-doc":38,"-document":[],"-docutils":12,"-drilldown":[33,41,103,117,199],"-dump":33,"-e":133,"-each":37,"-eanble":6,"-efficient":75,"-enable":[3,6,18,35],"-encoding":[],"-encodiong":158,"-endpoint":[138,139],"-escalation":[],"-essential":[25,30],"-event":33,"-exact":119,"-existence":40,"-fd":[37,138],"-file":[33,37,78,133,138],"-files":[],"-filter":[25,30,33,37,39,41,75,117,140,147,151,153,154,158,167,204,206],"-frequency":37,"-ftp":134,"-full":12,"-g":[8,31],"-get":[12,18,25,30,39],"-gobject":33,"-gqtp":[],"-gram":[0,127,158,193,195,201],"-groonga":[12,13,134,204],"-h":[133,135,186],"-help":[],"-history":37,"-host":134,"-html":[35,39],"-http":[],"-httpd":[],"-i":[33,133,134],"-id":[39,114,133],"-idf":[168,170],"-in":[12,60],"-index":33,"-inverse":[168,170],"-ipadic":[26,180],"-j":[6,7,28],"-jemalloc":41,"-jinja":12,"-jp":[40,180],"-jumandic":26,"-key":[12,38],"-keyring":[25,39],"-keys":12,"-known":153,"-l":[133,138,139,160],"-latest":[],"-launchpad":12,"-leak":35,"-leaner":139,"-learner":[],"-level":[33,41,133,139],"-libedit":35,"-libevent":38,"-libstemmer":41,"-limit":[33,34,40,117,133],"-line":21,"-lines":[37,138],"-localstatedir":[],"-log":[],"-lz4":[],"-lzo":85,"-m":132,"-match":[],"-max":[37,133,138],"-mecab":[24,25,26,27,30,39,40,41],"-memory":35,"-message":[],"-mm":[158,160],"-mode":17,"-mruby":[6,12,41],"-msgpack":186,"-munin":[],"-mysql":[24,25,26,30,106,161],"-n":[37,133,138,201],"-neologd":180,"-node":24,"-normalizer":[24,25,26,30,39,106,161],"-offset":[33,117],"-org":12,"-oriented":153,"-output":[33,39,40,117,134,146,147,148,153],"-p":[132,133,134,138,192,205],"-pack":[],"-package":[],"-packages":12,"-patch":17,"-path":[],"-per":[37,138],"-pgp":12,"-pid":[33,37,133],"-pip":18,"-platform":[],"-plugin":13,"-plugins":[],"-po":[],"-point":182,"-port":[133,134,138],"-prefix":[],"-properties":30,"-protocol":[133,134,136,189,205],"-query":[33,37,39,40,41,133,135,146,147,151,153,157,160,166,190,201,204,206],"-r":[138,139],"-receive":[138,139],"-release":[],"-repository":[12,30,39],"-root":[35,133,136],"-rotate":[33,133],"-rpm":12,"-rroonga":46,"-ruby":[6,12,39],"-s":[133,138,139,192],"-scorer":140,"-search":[41,180],"-searchu":180,"-secret":12,"-send":[138,139],"-separated":33,"-server":[],"-size":[33,133],"-sortby":40,"-source":12,"-sphinx":[12,18],"-src":[12,25],"-static":37,"-stem":[25,30,41],"-strings":38,"-suggest":[],"-t":[133,138],"-talk":[2,12,33,40],"-tar":29,"-terminated":[61,69],"-test":[12,14],"-text":180,"-threads":[133,138],"-threshold":[],"-time":153,"-token":[25,30,41],"-tokenizer":[24,25,26,30,39,40],"-type":[37,135,174,175,177,186],"-unauthenticated":[25,39],"-uploader":12,"-use":33,"-values":33,"-version":[],"-w":12,"-windows":33,"-with":[],"-wno":37,"-word":117,"-working":39,"-x":[12,40],"-yyy":17,"-z":138,"-za":138,"-zlib":[],".$":[103,117],".'":[39,40,85],".(":12,".)":[40,158,160,168,181],".,":[117,149],".-":17,"..":[6,7,17,39,40,65,69,75,79,82,86,95,104,114,117,120,121,133,135,136,149,151,157,158,167,168,170,186,201],"...":[33,37,39,40,41,45,46,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,82,114,117,120,122,133,134,135,136,138,146,154,157,158,159,164,167,172,204],"./":[17,28],".:":[138,139],".>":172,".\"":[117,146,147,151,153,158,159,168,180,198,200,201,205,207],".]":[75,82,114,120,122,158],"._":[40,41,60,103,117,157,158,198,199],".age":94,".am":18,".am\u30d5\u30a1\u30a4\u30eb":12,".asc":12,".askmonty":41,".blog":195,".body":[83,91,207],".builtin":51,".c":[42,89,117],".clean":12,".co":[42,117],".column":[40,41,84,94],".com":[6,7,8,12,13,17,21,198,199,201,205,208],".comment":[203,204],".conf":[33,135,181,190,196],".content":[103,117,154,157,158,159,181,203],".created":103,".current":33,".d":[25,181,196],".db":[40,133,192,201,205],".ddl":134,".deb":12,".debian":12,".description":204,".dll":69,".domain":33,".dump":37,".en":12,".entries":181,".exe":31,".fedoraproject":24,".flags":63,".garbage":40,".git":[6,7,8,12,13,17],".github":17,".gpg":12,".grn":[93,135],".groonga":[12,17,24,25,26,27,28,29,30,31,134],".group":154,".gz":[12,17,24,25,26,27,28,29,30],".h":[16,33,69],".hash":204,".high":84,".html":[12,17,133,135],".htpasswd":[135,186],".i":24,".index":[33,94],".jp":[12,33,42,117],".js":12,".js\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":21,".json":[135,164],".kentaro":40,".key":63,".label":117,".list":[12,25],".load":134,".location":204,".log":[28,33,77,133,134,135,168,190],".md":12,".md\u30d5\u30a1\u30a4\u30eb":12,".me":[2,12,33],".mo\u30d5\u30a1\u30a4\u30eb":17,".msgpack":164,".n":[51,103,117,157,158,181],".name":[82,154,204],".ncpu":27,".ne":42,".nested":117,".net":[2,12,198,199,200,201,205,208],".nginx":135,".o":200,".offset":63,".org":[12,17,24,25,26,27,28,29,30,31,33,41,46,75,93,134,135,148,198,199,200,201,205,208],".osdn":[2,12],".output":136,".overcommit":[],".patch":17,".pc":[36,37],".php":12,".pid":133,".po":[],".po\u30d5\u30a1\u30a4\u30eb":[],".posted":204,".rb":[35,41,103,116],".repoforge":24,".roonga":[157,158],".rpm":[24,26],".score":129,".scr":134,".select":[134,158],".serial":84,".service":39,".set":103,".sh":[6,12,14,17,21,39],".so":[109,110,113],".source":33,".sourceforge":[2,12],".spec":37,".ssssss":160,".status":134,".sub":[103,117],".synonym":117,".t":180,".tag":[84,103,117],".tar":17,".timestamp":108,".title":[96,198],".to":84,".travis":21,".tsv":[164,166],".txt":[12,180],".uuuuuu":158,".value":117,".weight":40,".x":24,".xml":164,".yml":21,".zip":17,".}":[75,82,158],"/ '":60,"/#":46,"/$":17,"/'":41,"/(":12,"/*":[16,17,50,65,68,135,190,196],"/+":12,"/.":37,"/..":[12,135],"/;":135,"/?":138,"/\"":[75,180,198,199,200,201,205,208],"/\u65e5":204,"/\u6708":204,"/\uff09":35,"/_":12,"/aba":[199,201,208],"/acccess":190,"/admin":[37,133],"/afr":[199,201,208],"/alice":180,"/api":186,"/apt":[12,25],"/archive":12,"/atv":[199,201,208],"/base":12,"/bc":12,"/bin":28,"/blog":12,"/branches":14,"/c":[0,6,7,16,184],"/cache":135,"/centos":[12,24,190],"/command":[14,135,136,167,205],"/commands":[41,86,88,122,124],"/commits":41,"/context":103,"/copyright":41,"/coremodule":135,"/cpuinfo":[24,25,26,30],"/cutter":12,"/d":[41,135,167,186],"/data":21,"/database":[135,186],"/db":[93,120,131,135,139,167,190],"/db1":186,"/db2":186,"/dd":158,"/debian":[12,25],"/default":[39,190],"/dev":12,"/dictionary":35,"/disk":167,"/doc":12,"/docs":135,"/en":[12,18,135],"/epel":24,"/etc":[12,25,39,135,166,181,190,196],"/eval":115,"/example":168,"/f":12,"/false":[34,198],"/fedora":[26,35,39],"/files":[12,18],"/function":12,"/functions":14,"/gat":[199,201,208],"/gqtp":[40,190],"/grntest":12,"/groonga":[6,7,8,12,13,16,17,21,24,25,26,27,28,29,30,31,33,35,37,39,40,86,88,109,110,113,122,124,131,133,135,138,166,181,190,192,201,205],"/header":29,"/hoge":133,"/home":180,"/homebrew":12,"/hostname":[133,134],"/hosts":12,"/html":[17,18,37,186],"/http":[135,190],"/httpd":[135,190],"/in":33,"/index":[12,17,133],"/introduction":[192,201,205],"/ja":[12,17,46],"/javascript":37,"/json":[37,135,186],"/key":60,"/kytea":127,"/lc":[12,17],"/lib":[109,110,113,131,135,190],"/limits":181,"/linux":[],"/lists":12,"/load":[116,135,186],"/local":[6,7,12,28,135],"/locale":[12,17,18],"/log":[28,33,133,135,138,190],"/lzo":[35,37,40],"/mailarchive":12,"/managers":[135,186],"/master":[17,21],"/max":41,"/meetup":33,"/message":12,"/mm":158,"/modules":[35,135],"/mrb":103,"/munin":28,"/mxcl":12,"/news":12,"/nfs":28,"/ngx":135,"/non":40,"/null":[6,7,34],"/o":121,"/or":96,"/other":135,"/packages":12,"/php":33,"/pipermail":41,"/plain":33,"/plugins":[28,35,40,109,110,113],"/ppa":[12,30],"/projects":12,"/pub":24,"/pull":12,"/query":[109,110,113],"/rab":[199,201,208],"/raw":21,"/reference":168,"/repositories":12,"/request":114,"/result":38,"/rpmforge":24,"/rroonga":41,"/run":[12,14,133],"/rurema":41,"/sbin":27,"/scorer":168,"/scripts":103,"/security":181,"/select":[114,135,205],"/setup":21,"/share":[37,133],"/shutdown":[133,135,186],"/source":[12,16,17,18,24,25,26,27,28,29,30,31],"/sources":[12,25],"/span":[146,147,153],"/srpm":12,"/status":[132,135,164,186,205],"/stem":179,"/stop":[93,125,179],"/synonyms":166,"/sysconfig":190,"/sysctl":[27,181,196],"/tab":33,"/test":180,"/tmp":[6,7,166,186],"/to":[135,186],"/travis":21,"/tsv":[109,110,113,166],"/ubuntu":[12,39,190],"/unit":14,"/usage":168,"/usr":[28,133],"/var":[28,33,131,133,135,190],"/vdw":[199,201,208],"/vector":[33,155],"/wgs":208,"/windows":[12,31],"/work":12,"/x":186,"/xml":186,"/yum":12,"/~":12,"0c":180,"0e":134,"0mq":40,"0x":[38,157,182,192,198],"0xc":192,"10":[134,201],"11":[75,117,151,158,181,195],"1\u305a":[73,77],"1\u3064":[10,32,37,40,41,53,71,75,81,84,86,94,96,101,103,104,108,109,110,113,114,115,116,117,120,121,126,127,129,134,135,147,149,151,153,154,157,158,167,172,176,178,180,181,186,192,200,203,204],"1\u30f6\u6708":172,"1\u4ef6":[195,204],"1\u5ea6":68,"1\u6708":[158,182,198,204],"1\u884c":134,"1byte":192,"1f":33,"1g":[25,30],"1gb":33,"1o":167,"2\u3064":[19,24,25,26,30,33,40,41,85,86,94,100,101,102,103,105,117,121,124,125,126,142,151,154,157,167,177,180,185,186,190,199,201,203,204],"2\u3064\u3081":[114,157,186,203],"2\u5104":32,"2\u6708":100,"2byte":192,"2grn":41,"3\u3064":[14,40,78,88,100,106,117,146,153,156,198,199,201,203],"3ki":35,"4\u3064":[84,133,153,178],"4byte":192,"4e":196,"4gbyte":32,"4gib":[178,192],"4kib":33,"5\u3064":141,"5f":134,"6elz":41,"6gib":181,"7\u6708":33,"7e":134,"8bit":182,"8byte":192,"8r":[28,39,133],"9\u3064":201,"9e":161,"9f":164,": n":132,":!":157,":#":41,":#{":160,":$":[18,157,158,206],":')":85,":..":117,":/":[12,13,17,21,24,25,26,27,28,29,30,31,41,46,75,93,114,132,133,135,136,138,148,164,186,198,199,200,201,205,208],"::":[33,80,103,164,168],":<":[117,157],":=":[117,157],":>":[117,157],":@":[117,151,157,198,200,201,204,205],":[":[134,167],":\"":[53,167,201],":\\":[8,31,167],":\\\"":95,":\u5206":204,":\u79d2":204,":^":[157,206],":bob":204,":byte":66,":clear":12,":groonga":[6,7,8,12,30,117,157],":mm":[158,160],":order":33,":port":[133,135,136],":set":41,":ss":[158,160],":value":[117,157],":~":[157,167],";/":[146,147],";\"":39,";b":[146,147],";rroonga":[146,147],"< n":158,"< t1":11,"< y":40,"<#{":160,"<-":186,"<..":172,"</":[146,147,148,153,164],"<=":[40,135,158,204],"<directory":139,"<encoding":133,"<endpoint":139,"<gqtp":134,"<groonga":134,"<ip":[133,134],"<level":139,"<limit":133,"<log":133,"<max":133,"<path":[133,139],"<port":[133,134],"<protocol":133,"<span":[146,147,153],"<threshold":133,"= \"":[41,100,117,158],"= n":158,"= y":40,"=$":[12,17,28],"='":148,"=(":12,"=)":11,"=-":28,"=..":12,"=/":[6,7,12,14,28,133,166],"==":158,"=\"":[29,103,117,146,147,153,164],"=\\":[146,147,148,153],"=_":102,"=`":18,"=add":127,"=allow":117,"=arg":167,"=ascending":102,"=c":[8,31],"=complete":138,"=dat":38,"=encoding":[],"=fedora":12,"=g":138,"=get":125,"=gr":138,"=gro":138,"=groo":138,"=groonga":[135,138],"=grooon":138,"=i":12,"=largetable":114,"=message":[],"=no":102,"=none":[103,106,117,125,127],"=null":[81,94,96,101,102,103,117,121,126,127],"=number":[],"=on":[7,8],"=pat":38,"=path":[],"=platform":[],"=query":138,"=r":39,"=redhat":28,"=site":205,"=sjis":28,"=squeeze":12,"=submit":138,"=table":121,"=title":205,"=true":114,"=unique":114,"=users":[135,186],"=yes":[12,14,33,38,40,94,117],"> \"":33,"> y":40,">#{":160,">.":[146,147],">:":103,"><":[53,164],">=":[40,158],">>":[40,158],">\"":[40,89,103,117,146,148],">\n<":164,">\u3001":90,">\u529b":98,">alloc":164,">cache":164,">command":164,">default":164,">max":164,">n":164,">rroonga":[146,147],">starttime":164,">uptime":164,">version":164,"??":117,"?arg":167,"?argument":136,"?id":114,"?msg":12,"?parameter":135,"?table":[114,135,186,205],"@'":201,"@ceekz":40,"@do":41,"@github":[6,7,8,12],"@groonga":[2,12],"@kiske":39,"@lists":[2,12],"@naoina":[39,40],"@orangain":40,"@packages":12,"@s":35,"@soundkitchen":[37,39],"@tomotaka":37,"@uzulla":37,"@wareohji":39,"@yappo":[40,41],"@yito":[39,40],"@~":167,"[#":[37,38,39,41],"[$":[],"[(":167,"[,":144,"[2":133,"[:":205,"[@":[37,39,40,41],"[[":[75,84,88,92,100,114,115,116,117,122,124,125,129,133,138,143,146,147,153,157,158,159,168,174,179,195,198,200,203,204,206],"[[\"":82,"[\"":[33,75,82,86,117,120,153,155,158,174,195,198,200,204],"[\u8a9e":82,"[a":138,"[admin":[37,39,40],"[api":33,"[apt":39,"[args":133,"[backslash":157,"[benchmark":41,"[bernard":33,"[bindings":33,"[cmake":33,"[column":41,"[dat":[38,39],"[dd":167,"[deb":[33,37,39,40,41],"[doc":[33,37,38,39,40,41],"[dump":[39,40,41],"[element":[75,158],"[example":[33,41],"[fedora":[39,41],"[geo":[37,40],"[github":41,"[gqtp":40,"[grntest":37,"[groonga":[12,33,37,39,41],"[header":[78,81,84,85,88,89,92,94,96,100,102,105,106,107,108,109,110,113,115,116,121,124,126,127,128,129],"[http":[33,39,40,41],"[httpd":[33,39,40,41],"[index":41,"[info":167,"[key":33,"[label":[33,103,117],"[label1":[41,103,117],"[label2":[103,117],"[libedit":37,"[linux":39,"[load":[39,41],"[logical":33,"[macports":37,"[mdev":33,"[mecab":33,"[mrb":33,"[mruby":[33,41],"[munin":[37,39,40,41],"[n":[40,41,117],"[normalizer":41,"[number":95,"[os":41,"[output":38,"[pat":39,"[php":[39,41],"[pkg":[37,39],"[plugin":[33,41],"[power8":41,"[rpm":[33,37,38,39,40,41],"[sharding":33,"[snippet":[41,153],"[solaris":39,"[space":157,"[suggest":[38,39,40],"[table":40,"[tag":[103,117],"[test":39,"[token":40,"[tokenizer":[39,40],"[travis":40,"[warning":167,"[windows":[33,37,39,40,41],"[yum":39,"[{":[135,186],"\"#":37,"\"#\"":134,"\"#{":158,"\"%":167,"\"'":[33,39,40,41,75,84,100,117,157,158,167,193,195],"\"(":[40,207],"\")":[33,39,40,41,52,114,141,142,143,145,149,151,158,200,208],"\"*":39,"\",":[33,40,75,78,82,84,86,88,89,92,93,95,103,114,117,119,120,122,124,125,129,133,134,135,141,143,146,147,148,149,151,153,154,155,157,158,159,161,167,168,170,174,175,177,179,192,195,198,199,200,201,203,204,205,206,207,208],"\"-":[37,143],"\".":[158,168,170,184,199],"\"/":[86,88,122,124,133,180,208],"\":":[33,75,82,84,88,92,93,95,100,101,103,104,106,107,114,115,116,117,119,120,124,125,127,128,129,133,134,135,141,143,146,147,148,149,151,154,155,157,158,159,161,164,167,168,170,174,175,177,179,180,186,192,198,199,200,201,203,204,205,206,207,208],"\";":[134,135,186],"\"<":[40,146,147],"\">":[146,147,153,164],"\"?":[117,164],"\"@":204,"\"[":[39,89,103,167],"\"\"":[38,84,154,158,167,182],"\"\\":[33,167],"\"\\\\":167,"\"\\n":33,"\"\u3001":[174,199],"\"\u3002":41,"\"\u308d\u3086\u304d":206,"\"\u30df\u30ea":158,"\"\u4e8c":174,"\"\u5f37":180,"\"\u672c":180,"\"\u8a9e":180,"\"\uff08":174,"\"\uff09":[34,174,198,208],"\"]":[33,75,86,93,103,117,133,153,155,158,174,195,200,201,204],"\"_":[40,75,78,84,86,88,92,93,95,103,117,120,124,125,129,135,141,143,148,149,151,154,155,157,158,159,161,167,168,170,174,175,177,179,186,195,198,199,200,201,203,204,205,206,207,208],"\"a":[41,117,127,154],"\"ab":176,"\"alice":157,"\"always":101,"\"apple":161,"\"application":37,"\"auto":101,"\"b":[117,154],"\"black":161,"\"blank":161,"\"book":158,"\"c":[117,154],"\"canceled":114,"\"co":176,"\"color":161,"\"complete":176,"\"content":[117,157,158,179],"\"correction":176,"\"created":103,"\"d":180,"\"ddl":41,"\"double":158,"\"e":[120,127,174,180],"\"element":75,"\"ellip":144,"\"ellipsoid":144,"\"engine":[174,175,177],"\"fulltext":127,"\"good":[103,117,158],"\"gr":121,"\"gronga":176,"\"groonga":[75,93,117,121,153,154,158,176],"\"h":127,"\"hello":[125,179],"\"http":75,"\"i":[78,103,117,157,158,159,179,203,204],"\"is":198,"\"k":200,"\"keyword":117,"\"label":117,"\"localhost":192,"\"message":[167,170],"\"mroonga":[75,93,117,154,158],"\"mysql":[75,176],"\"n":[78,103,117,119,135,157,158,192,201,205],"\"name":151,"\"never":101,"\"ni":174,"\"no":39,"\"null":39,"\"o":180,"\"popular":117,"\"pp":41,"\"rect":[39,144],"\"rectangle":[39,143,144],"\"requires":39,"\"roonga":176,"\"ruby":75,"\"s":[120,127,174,175,180],"\"saerch":175,"\"say":158,"\"se":174,"\"sea":174,"\"search":[157,174,175,177],"\"sequence":[120,174,175,177],"\"serach":175,"\"service":175,"\"sound":175,"\"sphere":144,"\"sphr":144,"\"starttime":164,"\"sug":176,"\"suggest":176,"\"t":[127,180],"\"table":133,"\"tags":75,"\"text":37,"\"theater":207,"\"theatre":207,"\"timestamp":100,"\"tritonn":117,"\"type":120,"\"unknown":52,"\"uptime":164,"\"utf":52,"\"value":117,"\"vector":40,"\"version":164,"\"visual":8,"\"web":[175,177],"\"weight":198,"\"x":[40,41,158],"\"xxx":40,"\"yyyy":158,"\"}":[84,92,93,95,100,101,103,104,117,120,135,149,151,154,155,157,158,159,161,167,170,174,175,177,179,186,198,199,200,203,206,208],"\\%":31,"\\'":[133,157],"\\(":157,"\\[(":167,"\\\"":[53,95,146,147,148,153,154,167,193],"\\\"a":154,"\\\"}":95,"\\\\":[33,53,146,154,167],"\\\\\\":[33,167],"\\\\z":167,"\\a":[33,167,180],"\\ahost":167,"\\bin":31,"\\groonga":31,"\\n":167,"\\u":180,"\\z":[167,180],"\u2026\uff09":175,"\u2192id":178,"\u25a1\u25a1":10,"\u25cb\u25cb":10,"\u3001 \"":149,"\u3001#":204,"\u3001$":12,"\u3001'":[41,52,133,151,158,182,198],"\u3001(":[63,64,134,141,182],"\u3001-":[35,134,182],"\u3001.":[14,17],"\u3001/":[201,205],"\u3001:":134,"\u3001>":87,"\u3001[":201,"\u3001\"":[37,39,40,148,149,154,174,175,176,177,182,201,204,207],"\u3001\u00d7":10,"\u3001\u300c":[34,117,133,174,180,193,195,199,200,208],"\u3001_":201,"\u3001c":201,"\u3002#":[35,37,204],"\u3002'":60,"\u3002(":[11,12,26,45,61,64,92,95,133,134,190,203],"\u3002)":[64,92,117,134,203],"\u3002-":[28,55,64],"\u3002.":17,"\u3002:":[10,12,14,17,33,37,77,82,85,90,93,95,107,114,120,122,128,131,133,134,135,136,158,168,174,175,176,177,181,186,193,195,196,201],"\u3002[":[33,39,40,41,201],"\u3002\"":[40,41,149,175,189,195,199,204,205],"\u3002\u00d7":10,"\u3002\u2193":133,"\u3002\u3002":163,"\u3002\u300c":[41,89,103,106,117,121,125,127,157,158,167,180,200,203],"\u3002\u300d":195,"\u3002\u3044":11,"\u3002\u3044\u304f\u3064\u304b":167,"\u3002\u3044\u307e":38,"\u3002\u3056\u3063\u304f\u308a":75,"\u3002\u3057\u304b\u3057":[0,6,7,8,23,37,75,88,117,124,143,159,161,175,180,182,186],"\u3002\u3057\u304b\u3082":185,"\u3002\u3059":[134,159],"\u3002\u3059\u3050":135,"\u3002\u3059\u3079\u3066":[14,17],"\u3002\u3064\u307e\u308a":[45,117,157,180,201,207],"\u3002\u3069\u308c":138,"\u3002\u307e\u305a":195,"\u3002\u307e\u305f":[0,11,77,94,117,132,133,134,136,158,166,175,182,192,198,201,208],"\u3002\u307e\u3060":41,"\u3002\u30ad\u30fc":117,"\u3002\u30bf\u30b0":[75,103,117,147,200],"\u3002\u30d0\u30b0":19,"\u3002\u30df\u30ea":198,"\u3002\u30ed\u30b0":[121,135],"\u3002\u4f8b":[8,33,60,121],"\u3002\u5024":141,"\u3002\u7701\u7565\u53ef\u80fd":146,"\u3002\uff08":[17,21,35,37,50,64,82,94,101,103,114,117,133,147,153,156,157,158,163,174,175,177,178,180,181,182,193],"\u3002\uff09":[17,21,34,35,37,64,94,101,103,114,117,121,147,153,157,158,163,175,177,178,180,193],"\u3002_":[73,201],"\u3002adjuster":41,"\u3002amazon":117,"\u3002api":[146,147,153,156],"\u3002apt":12,"\u3002ascii":[157,158],"\u3002bash":33,"\u3002blogs":195,"\u3002buf":47,"\u3002c":[0,16,80],"\u3002callback":11,"\u3002centos":33,"\u3002column":[11,47,201],"\u3002command":77,"\u3002cpu\u30b3\u30a2":186,"\u3002ctrl\u30ad\u30fc":201,"\u3002cursor":64,"\u3002db":[11,37,50,192,201],"\u3002debian":14,"\u3002dump":93,"\u3002eclipse":17,"\u3002ecmascript":117,"\u3002ftp":134,"\u3002functions":14,"\u3002gdb":[6,7,14],"\u3002geopoint":204,"\u3002git":12,"\u3002gnr":156,"\u3002gnu":5,"\u3002google":157,"\u3002gqtp":[80,132,192],"\u3002grn":[11,156],"\u3002groonga":[0,3,24,25,26,28,30,31,33,39,40,41,68,71,77,85,117,119,134,135,157,158,164,167,172,174,178,181,201,203,205],"\u3002hook":55,"\u3002host":192,"\u3002html":146,"\u3002http":40,"\u3002id":50,"\u3002int":40,"\u3002iptables":205,"\u3002json":95,"\u3002key":[63,193],"\u3002keys":63,"\u3002linux":181,"\u3002make":134,"\u3002max":64,"\u3002messagepack":[28,78],"\u3002min":64,"\u3002mroonga":[0,60],"\u3002munin":[24,25,26,30],"\u3002mysql":[24,25,26,30,172],"\u3002n":[106,127,195],"\u3002name":[47,50,63],"\u3002null":[50,51,63],"\u3002obj":60,"\u3002offset":55,"\u3002optarg":51,"\u3002os":89,"\u3002output":[41,93],"\u3002pcre":135,"\u3002point":[144,145],"\u3002post":186,"\u3002rroonga":156,"\u3002ruby":167,"\u3002run":14,"\u3002scan":14,"\u3002set":134,"\u3002sql":117,"\u3002squeeze":14,"\u3002table":[63,67,92],"\u3002tag":200,"\u3002timeout":60,"\u3002tokendelimit":177,"\u3002travis":21,"\u3002tsv":[78,166],"\u3002utf":[40,161],"\u3002value":[60,73],"\u3002video":200,"\u3002windows":5,"\u3002xml":78,"\u300c#":35,"\u300c,":93,"\u300c\"":133,"\u300c\u25cb":102,"\u300c\u30e9\u30d9\u30eb":117,"\u300c\u5024":121,"\u300c\u5f0f":53,"\u300c\u6771\u4eac\u90fd":195,"\u300c\u697d\u3057":193,"\u300c\u697d\u3057\u3044":193,"\u300c\uff76":161,"\u300calice":204,"\u300cbill":193,"\u300cbilliard":193,"\u300cbob":204,"\u300ccharlie":204,"\u300ccomments":204,"\u300cgrand":204,"\u300cgroonga":[41,117,156,181],"\u300chello":117,"\u300cnew":204,"\u300cnihon":174,"\u300cnippon":174,"\u300cpopular":117,"\u300csenna":117,"\u300cusers":204,"\u300cv":12,"\u300d:":161,"\u300d\u3001":[41,200,204],"\u300d\u3002":156,"\u300d\uff08":[93,117,193],"\u3042\u3044\u307e\u3044":121,"\u3042\u304d":206,"\u3042\u304d\u3089":41,"\u3042\u304f":46,"\u3042\u3052\u308b":[],"\u3042\u305f\u3044":81,"\u3042\u305f\u308a":[35,37],"\u3042\u3063":[12,17,26,39,40,47,60,63,73,77,95,100,117,120,134,158,167,186,200],"\u3042\u3068":[12,17,89,181],"\u3042\u306a\u305f":[2,6,7,8,12,33,167],"\u3042\u307e\u308a":[10,63,203],"\u3042\u3089\u304b\u3058\u3081":[12,26,182],"\u3042\u3089\u308f\u3057":207,"\u3042\u308a":[],"\u3042\u308b":[],"\u3042\u308b\u3044":[0,11,26,41,47,62,63,77,121,135,144,145,149,157,158,181,192],"\u3042\u308c":[6,7,12,46,121,134,141,149,158,159,195],"\u3042\u308c\u3053\u308c":10,"\u3042\u308f\u305b":[172,181],"\u3042\u308f\u305b\u308b":39,"\u3044\u3044":[2,10],"\u3044\u3044\u306d":[103,117,157,158],"\u3044\u3046":117,"\u3044\u304d":[10,12,201],"\u3044\u304f":[],"\u3044\u304f\u3064":[3,167],"\u3044\u304f\u3064\u304b":[1,2,8,11,12,14,26,28,33,40,73,93,94,100,102,103,105,106,114,117,125,127,140,151,157,158,161,167,172,180,181,185],"\u3044\u304f\u3089":0,"\u3044\u305a\u308c":[73,77,182],"\u3044\u3063":167,"\u3044\u3064":174,"\u3044\u307e":116,"\u3044\u307e\u305b":[6,24,40,41,78,103,117,120,121,127,135,157,158,163,166,167,172,178,180,185,186],"\u3044\u308b":[],"\u3044\u308c":[33,39,60,180,198],"\u3044\u308d\u3044\u308d":[],"\u3044\u308f\u3086\u308b":200,"\u3044b":[193,195],"\u3046\u3048":[37,39],"\u3046\u3061":[11,37,39,47,60,63,64,77,82,141,163],"\u3046\u3061\u3044":133,"\u3046\u3063\u304b\u308a":40,"\u3046\u307e\u304f":[],"\u304a\u3044":[0,12,14,17,37,40,47,60,63,73,198,201],"\u304a\u304b":28,"\u304a\u304b\u3057":35,"\u304a\u304b\u3057\u304f":35,"\u304a\u304d":[0,12],"\u304a\u304d\u307e\u3057\u3087":198,"\u304a\u3051":117,"\u304a\u3051\u308b":[0,32,39,40,157,182,198,200,201],"\u304a\u3053":[0,198],"\u304a\u3053\u306a\u3063":201,"\u304a\u3055\u3089\u3044\u3057":10,"\u304a\u3059\u3059\u3081":[149,186],"\u304a\u3059\u3059\u3081\u3057":[12,157,158,190],"\u304a\u3070":[33,34,37,40],"\u304a\u3070\u305f":[33,37,40],"\u304a\u3088":45,"\u304a\u3088\u3073":[0,12,28,39,61,133,198,201],"\u304a\u3089":12,"\u304a\u308a":[41,208],"\u304a\u5f85\u3061":2,"\u304a\u77e5\u3089":[],"\u304a\u9858\u3044":[10,134],"\u304b\u3048\u308b":[33,154],"\u304b\u304b\u3063":78,"\u304b\u304b\u308a":[157,158,159,180],"\u304b\u304b\u308b":[63,114,131,159,201],"\u304b\u304e\u308a":134,"\u304b\u3051":[40,83],"\u304b\u3051\u308b":[10,135],"\u304b\u305a":[39,41],"\u304b\u305a\u3072\u3053\u3055\u3093":39,"\u304b\u305f":33,"\u304b\u3061":[117,193],"\u304b\u3064":[40,64,117,158,193],"\u304b\u3069":[33,41,93,94,102,103,108,117,120,131,135,141,144,145,157,195,196,201,208],"\u304b\u3069\u3046":[28,33,80,141,151,154,195],"\u304b\u306a\u308a":41,"\u304b\u307e\u3044":201,"\u304b\u3082":[10,41,65,78,88,100,106,107,108,114,115,116,124,128,157,158,167,203],"\u304b\u3089":[],"\u304b\u308f\u308a":[26,33,41,195],"\u304by":40,"\u304c\u3042\u308a":[12,19,117,136,143,166,172,179],"\u304c\u3042\u308c":172,"\u304c\u3053\u306e":157,"\u304c\u3059":[63,108],"\u304c\u3061":180,"\u304c\u3063":[],"\u304c\u3064\u3044":[35,39,65,75,117,172,178],"\u304c\u3069":181,"\u304c\u3072\u3068\u3064":166,"\u304c\u308f\u304b\u308a":[84,148,180,204],"\u304c\u308f\u304b\u308b":143,"\u304c\u308f\u304b\u308c":117,"\u304f\u3060":[0,2,6,7,8,12,17,24,25,26,27,28,29,30,31,33,39,40,41,45,59,75,80,81,84,85,86,88,89,92,94,96,101,103,104,106,107,108,109,110,113,114,115,116,117,120,121,124,125,126,127,128,129,134,135,136,143,148,151,154,155,157,158,166,167,178,180,181,182,184,186,190,195,196,198,199,201,204,205,206,208],"\u304f\u308c":10,"\u304f\u308c\u308b":[0,16,17,89,94],"\u3050\u3088\u3046":143,"\u3050\u308b":[33,156,157,158],"\u3050\u308b\u3093":[157,158,200],"\u3053\u3046":10,"\u3053\u3046\u3059\u308c":10,"\u3053\u3053":[12,21,78,117,120,157,158,161,166,195,198,201,204,208],"\u3053\u3053\u3067":12,"\u3053\u3068":[],"\u3053\u306a\u3044":41,"\u3053\u306a\u308c":100,"\u3053\u306e":[0,2,3,5,6,7,8,11,12,17,20,21,23,24,25,26,27,28,29,30,31,33,37,38,39,40,41,44,45,46,53,63,64,65,69,75,76,78,80,81,84,85,86,88,89,94,95,96,100,101,102,103,104,105,106,107,108,109,110,113,114,115,116,117,121,124,125,126,127,128,129,131,133,134,135,140,141,143,144,146,147,151,153,154,155,157,158,159,162,164,166,167,168,170,172,173,174,175,177,178,180,181,185,186,192,193,195,198,199,200,201,202,203,204,207,208],"\u3053\u3080":116,"\u3053\u308c":[0,6,7,8,11,12,16,17,28,33,37,39,40,41,46,51,68,75,81,84,85,88,100,101,102,103,105,108,109,110,113,114,117,121,124,127,135,141,143,147,153,154,157,158,159,161,166,167,172,174,175,176,177,178,180,181,186,192,193,195,196,198,199,203,204,207,208],"\u3053\u308c\u3089":[3,24,25,26,28,29,30,39,40,73,75,94,101,102,103,109,110,113,117,135,136,143,156,157,158,161,164,167,172,176,177,178,186,195,199,200,201,204],"\u3054\u3068":[],"\u3054\u307f":[10,40],"\u3054\u3089\u3093\u304f":13,"\u3054\u89a7\u304f":[14,201],"\u3055\u3044":[0,2,6,7,8,12,14,17,24,25,26,27,28,29,30,31,33,39,40,41,45,59,75,80,81,84,85,86,88,89,92,94,96,101,103,104,106,107,108,109,110,113,114,115,116,117,120,121,124,125,126,127,128,129,134,135,136,143,148,151,154,155,157,158,166,167,178,180,181,182,184,186,190,195,196,198,199,201,204,205,206,208],"\u3055\u304d":198,"\u3055\u305b":10,"\u3055\u307e\u3056\u307e\u306a":[],"\u3055\u3089":203,"\u3055\u3089\u306b":[0,33,41,75,77,176,178,200,201],"\u3055\u3093":[6,7,17,33,35,36,37,38,39,40,41,100,102,103,105,117,121,125,127,153,167,176,181,186,199],"\u3057\u3044":[193,195],"\u3057\u3046\u308b":41,"\u3057\u304b":[17,41,102,103,117,121,135,157,158,167,180,186,198,203],"\u3057\u304b\u3057":[17,103,117,158,166,167,180,181,186,193,195,203],"\u3057\u304d\u308c":39,"\u3057\u304f":40,"\u3057\u3064\u3064":14,"\u3057\u3066":[10,12,14,17,30,35,39,40,63,117,135,195,199,200,201],"\u3057\u306a\u3044":33,"\u3057\u307e":10,"\u3057\u307e\u3044":[134,175,195,198,206],"\u3057\u307e\u3046":[0,10,12,33,35,37,39,40,41,131,180],"\u3057\u307e\u3057":40,"\u3057\u307e\u3057\u3087":[75,100,180,207],"\u3057\u307e\u3059":[24,103,117,157,158,176,193,204],"\u3057\u307e\u305b":[10,28,103,117,135,174],"\u3057\u307e\u3063":41,"\u3057\u3084\u3059\u304f":39,"\u3057\u3088":[11,37,40,45,50,58,88,95,124,143,159,198],"\u3057\u308a":10,"\u3057\u308c":[41,65,78,88,107,108,114,124,128,157,158,167],"\u3058\u304d":153,"\u3059\u304e\u307e\u305b":200,"\u3059\u304e\u308b":75,"\u3059\u304f":154,"\u3059\u3050":[0,114,186],"\u3059\u3053\u308c\u3089":117,"\u3059\u3067":[12,41,65,88,124,127,159,181,193],"\u3059\u306a\u308f\u3061":198,"\u3059\u3079":[11,33,37,41,77,83,84,93,94,96,104,117,124,127,129,134,135,158,174,178,180,181,186,192,204],"\u3059\u3079\u304d":11,"\u3059\u3079\u3066":[28,33,35,37,39,41,63,75,77,84,86,88,94,117,124,127,134,135,141,158,167,179,180,181,199,201],"\u3059\u3080":100,"\u3059\u308b":[],"\u3059\u308b\u304b":199,"\u3059\u308c":[0,12,33,63,109,113,117,134,141,146,157,158,180,199,201],"\u305a\u3064":[133,134,181,203],"\u305a\u306b":75,"\u305a\u308c":[0,11,63,77,85,95,97,98,133,143,182,192,198],"\u305b\u3044":[40,41],"\u305b\u3044\u305c\u3044":121,"\u305b\u306a":[157,158],"\u305b\u308b":[0,11,14,121,136,146,147,151,190],"\u305b\u308c":[0,84],"\u305d\u3046":[10,21,108,114,141,149,158],"\u305d\u3053":[12,195,198],"\u305d\u3053\u306b":122,"\u305d\u3057\u3066":[0,117,127,153,174,198,199,203,204],"\u305d\u3061\u3089":28,"\u305d\u306e":[],"\u305d\u306e\u307e\u307e":12,"\u305d\u306e\u3088\u3046":92,"\u305d\u306e\u5f8c":[50,117,158],"\u305d\u306e\u969b":12,"\u305d\u308c":[11,12,17,26,31,33,35,57,60,64,66,86,103,117,119,121,135,148,155,157,158,177,180,182,193,195,198,199,201,203,207],"\u305d\u308c\u304b\u3089":[75,117],"\u305d\u308c\u305e\u308c":[6,7,8,11,12,14,28,41,60,63,78,100,117,121,127,133,136,151,158,164,178,192,193,195,198,199,201,203,208],"\u305d\u308c\u3086\u3048":[157,198],"\u305d\u308c\u3089":[33,45,47,65,85,94,117,132,166,167,186],"\u305d\u308d\u305d\u308d":201,"\u305d\u3093\u306a":[28,121],"\u305e\u3044":103,"\u305e\u308c":[11,12,57,117,158,177],"\u305f\u304b":[33,37,114,117,175],"\u305f\u304b\u3063":[175,207],"\u305f\u304f":[6,7,17,37,40,65,100,102,103,105,117,121,125,127,153,167,176,181,186,199],"\u305f\u3051\u3069":117,"\u305f\u3055\u3093":[33,34,37,40],"\u305f\u3059\u3079\u3066":117,"\u305f\u3060":[26,75],"\u305f\u3060\u3051":39,"\u305f\u3060\u3057":[33,34,37,40,41,64,73,85,102,133,136,157,158,167,193],"\u305f\u3061":172,"\u305f\u3068\u3048":195,"\u305f\u3069\u3063":204,"\u305f\u3069\u308b":200,"\u305f\u3070\u304b\u308a":159,"\u305f\u3073":[12,77,134,208],"\u305f\u3076\u3093":28,"\u305f\u307b\u3046":117,"\u305f\u307e\u307e":186,"\u305f\u3081":[],"\u305f\u3081\u3057":208,"\u305f\u3089":[10,12,17,28,33,35,41,65,68,89,114,117,126,131,141,151,154,158,174,180,186,190],"\u305f\u308a":[0,3,10,33,41,55,117,121,156,167,178,182,190],"\u3060\u3044":[37,41],"\u3060\u304b\u3089":[103,117],"\u3060\u3055\u3044":[0,3,12,13,14,17,19,21,23,28,29,30,33,39,41,75,78,84,101,103,108,117,121,135,155,157,158,161,166,167,172,186,192,199,201],"\u3060\u3057":[37,134],"\u3060\u3063":[33,39,63,77,117,158,195],"\u3060\u3068":10,"\u3061\u3083\u3093":200,"\u3064\u3044":204,"\u3064\u304b":36,"\u3064\u304d":[32,41,75,81,85,115,116,117,126,148,166],"\u3064\u3051":143,"\u3064\u3051\u308b":[10,41,75,117,206],"\u3064\u3064":[151,195],"\u3064\u3065\u3044":204,"\u3064\u3076\u3084\u304d":159,"\u3064\u307e\u308a":[12,33,89,100,117,127],"\u3065\u3051":[],"\u3066\u304d":80,"\u3066\u304f":14,"\u3066\u3057\u307e\u3044":10,"\u3066\u307f\u307e\u3057\u3087":208,"\u3067\u3044":[33,117,158,198,204],"\u3067\u3044\u3046":[161,199],"\u3067\u304d":[],"\u3067\u304d\u308b":[],"\u3067\u304f":[3,21,23,41,75,117,121,158,166],"\u3067\u3053\u306e":181,"\u3067\u3057":[29,33,41,158,198],"\u3067\u3057\u304b":[7,180],"\u3067\u3057\u3087":[0,6,7,20,28,41,158,159,199],"\u3067\u3059":[0,3,6,7,8,10,11,12,14,16,17,18,19,21,24,25,26,28,29,30,31,32,33,37,39,40,41,45,46,47,49,50,51,53,56,60,61,63,65,67,68,71,73,75,76,77,78,79,80,81,82,84,85,86,88,89,92,93,94,95,96,100,101,102,103,104,105,106,107,108,109,110,113,114,115,116,117,120,121,122,124,125,126,127,128,129,131,132,133,134,135,136,138,139,141,143,144,146,147,148,149,151,153,154,155,156,157,158,159,161,163,164,166,167,168,169,170,172,174,175,176,177,178,179,180,181,182,185,186,190,192,193,195,196,198,199,201,202,203,204,205,207,208],"\u3067\u3059\u306d":10,"\u3067\u305d\u3046":101,"\u3067\u3064\u306a\u3052\u308b":117,"\u3067\u3069":[101,120],"\u3067\u3069\u3053":80,"\u3067\u306a\u3051\u308c":[94,157,158],"\u3067\u306b":[108,109,113,159,195],"\u3067\u306e":[41,78,153,180],"\u3067\u306f":41,"\u3067\u307e\u3068\u3081":166,"\u3067\u307f":0,"\u3067\u3082":[0,12,14,17,19,23,24,25,26,28,30,31,33,37,39,40,41,80,85,94,117,121,134,135,147,151,153,154,167,172,174,178,180,192,193,195,201,203,205,208],"\u3067\u3082\u3059\u3079\u3066":180,"\u3067\u3082\u3063\u3068\u3082":76,"\u3067\u3088\u308a":41,"\u3067\u5024":[133,201],"\u3068\u3044\u3044":167,"\u3068\u3044\u3046":[0,9,10,12,14,17,28,33,37,39,40,41,53,75,77,79,82,89,94,103,106,108,109,110,113,114,115,117,120,121,126,127,134,135,136,143,147,151,153,154,156,157,158,161,164,166,167,172,174,175,178,179,180,181,182,186,192,193,195,198,199,200,201,203,204,205,208],"\u3068\u3044\u3051":[100,117,121,174,192,196],"\u3068\u3044\u3063":[26,33,39,40,41,75,100,102,103,105,117,143,156,157,158,178,186,208],"\u3068\u3048":[0,28,33,41,52,53,77,84,88,103,117,124,147,153,167,180,181,193,208],"\u3068\u304a\u308a":[32,134,198,199,208],"\u3068\u304d":[0,6,7,9,10,11,12,24,25,26,27,28,30,33,34,35,37,39,40,41,50,57,61,63,64,65,75,78,84,85,88,89,94,101,102,108,109,110,113,117,120,121,124,126,127,133,135,143,151,153,156,157,158,159,161,166,167,172,174,175,176,177,180,181,182,186,192,193,198,199,200,201,204,205],"\u3068\u304d\u3057\u304b":89,"\u3068\u3053\u306e":[117,167,174,181],"\u3068\u3053\u308d":[16,17,38,85,103,115,116,158,180],"\u3068\u3053\u308d\u3044\u304f\u3064\u304b":75,"\u3068\u3055\u3089\u306b":[6,7],"\u3068\u3057":[11,40,41,50,88,116,117,124,132,133,134,135,143,158,159,166,174,175,176,177,180,182,198,200,203],"\u3068\u3057\u3066":[],"\u3068\u3057\u307e\u3057\u3087":[203,207],"\u3068\u3057\u307e\u305b":45,"\u3068\u3059\u3050":159,"\u3068\u3059\u3079\u3066":[39,94,101,117],"\u3068\u3059\u308c":0,"\u3068\u305d\u306e":77,"\u3068\u3063":135,"\u3068\u3064\u3044":208,"\u3068\u3066":[0,117,157,158,174,178,186],"\u3068\u3068":[16,17],"\u3068\u3068\u3082\u306b":198,"\u3068\u3069":[84,173],"\u3068\u306a\u3063":40,"\u3068\u306a\u308a":[147,153,157,186,205],"\u3068\u306e":[33,103,158],"\u3068\u307f":[40,117,136,157],"\u3068\u3082":[33,103,117,134,153,154,157,158,181,196,208],"\u3068\u3082\u3063\u3068":28,"\u3068\u3088\u3044":28,"\u3068\u308a\u3068\u3093":[157,158],"\u3068\u308b":60,"\u3068\u308f\u304b\u308a":172,"\u3068\u308f\u304b\u308b":12,"\u3069\u3046":[10,34,39,51,83,87,90,97,98,99,102,117,123,131,135,180,195,199],"\u3069\u3053":[28,37,41],"\u3069\u3061\u3089":[19,33,50,71,176,186,201,203],"\u3069\u3061\u3089\u304b":[147,153,157,158],"\u3069\u306e":[28,117,127,143,144,158,163,175,199],"\u3069\u308c":[78,86,94,101,117,121,180,186],"\u3069\u3093":122,"\u306a\u3044":[],"\u306a\u304a":[12,193],"\u306a\u304a\u3053\u306e":134,"\u306a\u304a\u3057":41,"\u306a\u304a\u3059":41,"\u306a\u304b":10,"\u306a\u304b\u3063":[33,39,41,77,83,87,90,97,98,99,117,123,131,133,134,141,151,154,158,195,201],"\u306a\u304c\u3089":[0,12,39,103,117,127,180,201],"\u306a\u304c\u308b":39,"\u306a\u304e":154,"\u306a\u304f":[0,3,10,12,21,28,33,34,35,37,39,40,41,50,60,86,100,103,109,113,117,121,134,135,141,153,154,156,157,158,163,178,180,181,186,190,198,199,201,203,207],"\u306a\u3051\u308c":[21,28,39,46,47,50,53,58,60,63,71,75,80,84,85,86,88,95,100,103,114,117,121,124,133,134,135,141,148,149,154,155,157,158,166,167,198],"\u306a\u3055":[136,152],"\u306a\u3055\u3093":3,"\u306a\u3057":[],"\u306a\u3059":145,"\u306a\u305c":[6,7,8,84,89,94,103,117,121,126,157,158,161,167,174,175,179,180],"\u306a\u305f":[33,172],"\u306a\u3063":[0,6,7,8,10,12,14,33,35,37,38,39,40,41,75,77,78,82,89,100,117,127,157,158,172,174,181,186,190,195,198,201,203,204,205],"\u306a\u3067":174,"\u306a\u3068\u304d":0,"\u306a\u3069":[0,5,6,7,8,11,12,13,17,20,28,33,37,39,41,51,60,77,82,84,99,115,116,117,121,127,134,146,147,153,156,157,158,159,163,166,167,174,175,177,178,180,182,186,193,195,198,201,202,204,205],"\u306a\u306a\u3069":[157,158],"\u306a\u306b":[],"\u306a\u306b\u5bfe\u3057":[157,158],"\u306a\u306e":[33,174],"\u306a\u3073":33,"\u306a\u3082\u306e":[12,47,167],"\u306a\u3084\u308a\u304b\u305f":207,"\u306a\u3089":[6,7,8,11,14,21,24,25,26,30,33,39,40,41,47,51,60,63,75,77,84,89,92,94,100,102,103,105,111,117,119,121,126,131,133,134,135,148,155,157,158,161,167,174,175,179,180,181,196,203],"\u306a\u308a":[0,6,7,8,10,12,21,33,37,39,40,41,46,47,50,51,53,60,63,71,73,75,77,78,80,81,83,84,85,89,91,94,95,100,103,109,110,113,114,117,120,121,124,126,133,134,135,136,143,144,153,157,158,159,161,164,166,167,172,174,175,179,180,182,192,195,198,199,200,201,203,204,205,206,208],"\u306a\u308b":[0,10,11,12,17,23,24,25,26,28,30,31,33,34,35,36,39,40,41,50,51,60,65,83,85,91,92,93,94,117,121,133,134,135,141,144,145,149,151,153,157,158,159,172,177,181,182,195,198,199,201],"\u306a\u308c":77,"\u306a\u3093":77,"\u306b\u3042\u308a":[6,7,8,106,121],"\u306b\u3044\u304f\u3064\u304b":[33,40],"\u306b\u304a\u3044":[12,77,198],"\u306b\u304f\u3044":0,"\u306b\u304f\u3044\u304b":180,"\u306b\u304f\u308b":195,"\u306b\u3057":[33,40,41,101,117,157,158],"\u306b\u3059":195,"\u306b\u3059\u3050":159,"\u306b\u3059\u3079\u3066":84,"\u306b\u3059\u308b":186,"\u306b\u3064":39,"\u306b\u3064\u3044\u3066":[0,3,7,11,12,19,20,21,24,25,26,27,28,29,30,33,37,39,40,41,45,57,60,64,75,76,77,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,140,142,143,144,145,150,151,152,154,157,166,167,168,170,172,174,175,177,180,181,182,184,186,192,193,196,198,199,201,202,204,208],"\u306b\u3064\u3051":158,"\u306b\u3064\u3076\u3084\u3051":10,"\u306b\u3064\u3076\u3084\u3051\u308b":10,"\u306b\u3066":[12,33,39,40,143],"\u306b\u3068\u3063":[10,33],"\u306b\u3068\u3063\u3066":[10,127,180],"\u306b\u3069":11,"\u306b\u3082":[117,193],"\u306b\u3088":39,"\u306b\u3088\u3063":[0,9,11,40,50,60,63,75,77,82,83,85,87,90,91,93,97,98,99,100,111,118,119,122,123,132,133,136,156,192,193,198,200,201],"\u306b\u3088\u3063\u3066":[0,14,40,50,73,77,195,198,201],"\u306b\u3088\u308a":[0,12,32,33,39,40,41,82,117,135,143,180,182,186,189,192,195,198,201,203,205,206],"\u306b\u3088\u308b":[],"\u306b\u5bfe\u3057":[0,11,12,33,34,39,40,41,55,60,63,75,84,85,103,109,113,114,117,119,120,129,131,132,136,154,157,158,180,193,199,200,201,203,207,208],"\u306b\u5bfe\u3057\u7570":151,"\u306b\u5bfe\u3059\u308b":[],"\u306b\u5bfe\u5fdc":[37,38,39,41,47,50,55,58,60,61,63,66,95,99,100,103,133,136],"\u306b\u5bfe\u5fdc\u4ed8\u3051":174,"\u306b\u5bfe\u8c61":37,"\u306b\u95a2\u3057":[11,33,40,50,134],"\u306b\u95a2\u3059\u308b":[],"\u306e\u3042\u3068":39,"\u306e\u3044":[0,11,63,77,95,97,98,133,143,182,192],"\u306e\u3044\u305a\u308c":[86,207],"\u306e\u3044\u305a\u308c\u304b":[62,63,66,144,145],"\u306e\u3046\u3061":[86,157],"\u306e\u304b":[193,204],"\u306e\u304b\u308f\u308a":41,"\u306e\u304f\u3089\u3044":181,"\u306e\u3059":89,"\u306e\u3059\u3079\u3066":[103,117,126,186],"\u306e\u305e\u3044":180,"\u306e\u3067":[0,1,10,12,17,21,31,33,37,39,40,41,78,84,94,100,102,103,115,116,117,121,135,136,141,143,151,153,154,166,174,181,186,190,193,195,196,198,201,203,204],"\u306e\u3067\u3057\u3087":117,"\u306e\u3069\u3061\u3089":[117,158],"\u306e\u3069\u3061\u3089\u304b":[117,141,157,158],"\u306e\u3069\u308c":[121,138,174],"\u306e\u306b":[],"\u306e\u306b\u5bfe\u3057":50,"\u306e\u307b\u304b":[182,198],"\u306e\u307f":[],"\u306e\u307f\u3057\u304b":176,"\u306e\u3088\u3046":[33,40,41,46,86,100,117,121,156,157,158,167,180],"\u306f\u3042\u306a\u305f":6,"\u306f\u3044":198,"\u306f\u3044\u304f\u3064\u304b":[32,45,78,157,186],"\u306f\u3044\u3051":[50,60,92,131,158],"\u306f\u3044\u308f\u3086\u308b":33,"\u306f\u3053\u306e":[117,154,180,196],"\u306f\u3058\u307e\u308a":77,"\u306f\u3058\u3081":[],"\u306f\u3059\u3079\u3066":[81,89,94,95,96,108,115,116,117,121,125,126,127,135,156,158,161,180,201],"\u306f\u305a":[39,134,181],"\u306f\u305d\u306e":50,"\u306f\u3061\u3087\u3046":158,"\u306f\u3068":178,"\u306f\u3069":[117,121,174],"\u306f\u3069\u3061\u3089":186,"\u306f\u3069\u3061\u3089\u304b":[157,158],"\u306f\u306a\u304f":167,"\u306f\u307b\u3068\u3093\u3069":117,"\u306f\u307e\u305a":12,"\u306f\u307e\u3060":[103,186],"\u306f\u307e\u3068\u3081\u3066":12,"\u306f\u307f":3,"\u306f\u6708":[158,172],"\u3070\u3042":172,"\u3070\u3044\u3051":[21,28,39,47,50,53,58,60,63,71,75,84,86,88,94,103,117,121,124,135,154,157,158,166,167],"\u3070\u304b\u308a":33,"\u3070\u3053\u306e":33,"\u3070\u3059\u3079\u3066":180,"\u3070\u308c\u308b":35,"\u3072\u3053\u3055\u3093":[39,41],"\u3072\u3068\u3064":[39,142,157],"\u3072\u3089":[157,158,174,180],"\u3072\u308d":206,"\u3072\u308d\u3086\u304d":206,"\u3075\u306a\u3068":41,"\u3075\u308a":120,"\u3076\u3093":10,"\u3078\u3059\u3079\u3066":[33,84],"\u3078\u306e":[28,198],"\u3079\u304d":[6,7,8,12,33,60,86,102,158,161,192],"\u3079\u304f":201,"\u3079\u3066":[104,117,135,199],"\u3079\u30fc\u30b9":41,"\u307b\u3046":41,"\u307b\u304b":[0,198],"\u307b\u3057\u304f":117,"\u307b\u3068\u3093\u3069":[33,50],"\u307b\u3069":[120,121,180,190,198,201],"\u307e\u3057":[6,7,8,10,12,17,33,37,39,40,41,103,117,121,135,143,157,158,161,167,175,180,195,199,200,204],"\u307e\u3057\u3087":[103,117,143,200,201],"\u307e\u3059":[0,1,2,3,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,23,24,25,26,27,28,29,30,31,32,33,37,39,40,41,44,45,46,47,48,50,51,52,53,55,57,58,59,60,61,62,63,64,65,66,67,68,69,71,73,75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,161,162,163,164,166,167,168,170,172,173,174,175,176,177,178,179,180,181,182,184,185,186,189,190,192,193,195,196,198,199,200,201,202,203,204,205,206,207,208],"\u307e\u305a":[12,17,28,31,134,135,158,193,195,199,201,203,204,207],"\u307e\u305b":[0,6,7,10,12,17,28,33,37,39,40,41,45,46,47,50,53,57,58,60,63,64,65,68,69,71,73,75,78,80,81,84,85,86,88,89,92,94,95,99,100,101,102,103,104,106,107,108,111,114,115,116,117,118,119,120,121,122,124,126,127,128,131,133,134,135,141,143,147,151,153,154,157,158,159,161,163,166,167,172,174,175,176,178,179,180,181,182,184,186,190,192,193,195,196,198,199,201,203,205,207],"\u307e\u305f":[],"\u307e\u305f\u3044":[39,143,172],"\u307e\u305f\u3050":[],"\u307e\u3060":[37,40,41,77,100,103,115,116,117,119,120,153,158,172,192],"\u307e\u3064\u308f":40,"\u307e\u3067":[11,12,17,32,40,41,45,46,95,100,117,133,134,141,159,167,178,181,199,201,203,204,206],"\u307e\u3068\u3081":[],"\u307e\u3068\u3081\u3066":[0,12,198,199],"\u307e\u3068\u3081\u308b":135,"\u307e\u307e":[10,12,33,40,77,158,198,199],"\u307e\u307e\u3067":195,"\u307e\u308a":[33,117],"\u307e\u308d\u3086\u304d":206,"\u307e\u308f\u308a":3,"\u307f\u304c":11,"\u307f\u305f\u3059":204,"\u307f\u3066":208,"\u307f\u306a\u3055":11,"\u307f\u307e\u3057\u3087":[100,117,158,198,199,200,201,203,204,207,208],"\u3080\u308b":[157,158],"\u3080\u308b\u3093":[157,158],"\u3082\u3046":[39,50,94,135,142,159,198,203],"\u3082\u3046\u307e\u304f":28,"\u3082\u304d\u3061\u3093":135,"\u3082\u3053\u306e":94,"\u3082\u3057":[6,7,21,28,33,40,41,46,65,78,80,89,94,103,114,117,121,131,134,135,141,143,149,151,154,157,158,166,167,172,181,186],"\u3082\u3057\u3042":33,"\u3082\u3057\u304b\u3057":180,"\u3082\u3057\u304f":[12,26,33,39,40,41,63,64,100,102,105,135,141,146,147,153,157,158,182,192,196,198,203],"\u3082\u3057\u3053\u306e":196,"\u3082\u3057\u3054":39,"\u3082\u3057\u307e\u305b":65,"\u3082\u3057\u308c":[166,180],"\u3082\u3057\u4e00\u3064":46,"\u3082\u3057x":40,"\u3082\u3059":[109,113],"\u3082\u305b":131,"\u3082\u3061\u308d\u3093":[134,199],"\u3082\u3063\u3068":[6,7,117],"\u3082\u3063\u3068\u3082":14,"\u3082\u3064":[33,92,199],"\u3082\u306e":[11,12,17,31,33,39,40,41,46,63,64,77,100,102,103,105,117,132,133,134,135,143,144,149,152,161,167,175,192,198,201,203],"\u3082\u3089\u3048":10,"\u3082\u3089\u3048\u308b":10,"\u3082\u3089\u3063":201,"\u3082\u308c\u308b":33,"\u3084\u304c":77,"\u3084\u3057":117,"\u3084\u3059\u3044":[33,34,117,147,153,156],"\u3084\u3059\u3044\u304b":166,"\u3084\u3059\u304f":[35,41],"\u3084\u3059\u304f\u3057":33,"\u3084\u305d\u306e":92,"\u3084\u307e":41,"\u3084\u307e\u3060":41,"\u3084\u307e\u306d":[40,41],"\u3084\u3081":[33,37,40,41],"\u3084\u3089":12,"\u3084\u308b":[],"\u3086\u304d":206,"\u3086\u304d\u3072\u308d":206,"\u3088\u3044":[17,60,84,94,117,157,158,186,199,203],"\u3088\u3046":[],"\u3088\u304b\u3063":195,"\u3088\u304f":[75,94,103,117,141,167,180],"\u3088\u3063":208,"\u3088\u3063\u3066":[71,127,163,182,202,208],"\u3088\u3073":11,"\u3088\u308a":[6,7,11,23,28,33,35,37,39,40,41,64,75,89,117,121,134,143,144,149,157,158,159,166,167,174,180,181,182,193,195,198,199,203,204],"\u3089\u308c":[0,10,11,35,37,39,40,46,83,84,86,92,114,117,122,127,178,180,201,203,207],"\u3089\u308c\u308b":[0,11,39,40,41,47,64,167,193],"\u308c\u305a":77,"\u308c\u307e\u305b":[28,33,63,77,82,117,133,146,166,203],"\u308c\u308b":[0,9,11,12,14,17,28,33,37,39,40,41,46,50,55,61,64,65,73,75,77,81,82,99,100,101,103,106,114,115,116,117,120,121,133,134,141,143,149,153,154,159,161,163,167,174,175,177,178,180,182,192,193,195,201,208],"\u308f\u304b\u3061":193,"\u308f\u304b\u308a":[33,35,41,117,180,199],"\u308f\u304b\u308b":41,"\u308f\u304b\u308c":117,"\u308f\u3051":[117,125,127,158,174,181,198],"\u3092\u304a\u3053":204,"\u3092\u3054":14,"\u3092\u3054\u89a7\u304f":0,"\u3092\u3064\u3051":[100,117,157],"\u3092\u3064\u3051\u308b":[6,7,158],"\u3092\u308a":135,"\u3092\u901a\u3057":[133,201],"\u3093\u304c":[157,158],"\u3093\u3057":108,"\u3093\u3057\u304d":156,"\u30a2\u30ab\u30a6\u30f3\u30c8":[2,12,41],"\u30a2\u30ab\u30a6\u30f3\u30c8groonga":10,"\u30a2\u30af\u30bb\u30b5":60,"\u30a2\u30af\u30bb\u30b5\u30fc":33,"\u30a2\u30af\u30bb\u30b9":[12,17,35,37,39,40,41,45,63,88,117,124,132,133,135,136,181,198,205],"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":[],"\u30a2\u30b8\u30e3\u30b9\u30bf\u30fc":[75,117],"\u30a2\u30c3\u30c8\u30de\u30fc\u30af":121,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":[],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u30a2\u30c9\u30ec\u30b9":[37,63,133,134,192,205],"\u30a2\u30ca\u30a6\u30f3\u30b9":12,"\u30a2\u30d4\u30fc\u30eb":12,"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":[0,20,56,158],"\u30a2\u30e1\u30ea\u30ab":143,"\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":[81,143,156],"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[41,64,103,117,121,127,175,180,193,195],"\u30a2\u30ed\u30b1\u30fc\u30c8":119,"\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":39,"\u30a2\u30f3\u30ab\u30fc":[],"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":[73,85,121],"\u30a2\u30f3\u30de\u30c3\u30d7":[33,89],"\u30a2\u30fc\u30ab\u30a4\u30d6":[12,17,31],"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":[],"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[],"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u30fc":41,"\u30a4\u30d9\u30f3\u30c8":33,"\u30a4\u30d9\u30f3\u30c8\u30ed\u30b0":33,"\u30a4\u30f3\u30af\u30eb\u30fc\u30c9":33,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9":[12,37],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":[],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":37,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[35,37],"\u30a4\u30f3\u30b9\u30da\u30af\u30b7\u30e7\u30f3":40,"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[],"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":[0,134,156],"\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":164,"\u30a4\u30f3\u30c6\u30b0\u30ec\u30fc\u30b7\u30e7\u30f3":21,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30a4\u30ba":32,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":[],"\u30a4\u30f3\u30dd\u30fc\u30c8":[],"\u30a6\u30a7\u30a4\u30c8":85,"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":[],"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6":[133,135,136],"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9":133,"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8":35,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":[28,59,117,133],"\u30a8\u30b9\u30b1\u30fc\u30d7":[],"\u30a8\u30c7\u30a3\u30bf":17,"\u30a8\u30e9\u30fc":[],"\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":[39,41,201],"\u30a8\u30e9\u30fc\u30c1\u30a7\u30c3\u30af":[37,39,41],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":[6,7,33,34,35,37,38,39,40,41,77,78],"\u30a8\u30e9\u30fc\u30ec\u30dd\u30fc\u30c8":39,"\u30a8\u30e9\u30fc\u30ed\u30b0":190,"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":[28,33,34,41,50,52,53,158,161],"\u30a8\u30f3\u30b3\u30fc\u30c9":[35,136,161],"\u30a8\u30f3\u30b8\u30f3":[0,117,167,198,200],"\u30a8\u30f3\u30c8\u30ea":[46,47,103,117,154,157,158],"\u30a8\u30f3\u30c8\u30ea\u30fc":117,"\u30aa\u30b9\u30b9\u30e1":[6,7,8,23,24,25,26,30,31,167,180],"\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea":35,"\u30aa\u30d5\u30bb\u30c3\u30c8":[33,39,117,120],"\u30aa\u30d5\u30e9\u30a4\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[33,38],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":[],"\u30aa\u30d7\u30b7\u30e7\u30f3":[],"\u30aa\u30da\u30ec\u30fc\u30bf":33,"\u30aa\u30da\u30ec\u30fc\u30bf\u30fc":33,"\u30aa\u30fc\u30ca\u30fc":[33,40],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":[33,37,40,41],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af":37,"\u30aa\u30fc\u30d0\u30fc\u30d8\u30c3\u30c9":[41,190],"\u30aa\u30fc\u30d7\u30f3":[37,39,40,46],"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":21,"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":21,"\u30ab\u30a6\u30f3\u30c8":[40,100,204],"\u30ab\u30b9\u30b1\u30fc\u30c9":[],"\u30ab\u30b9\u30bf\u30de\u30a4\u30ba":[6,7,8,28,33,39,40,41,90,93,106,117,121,125,127,133,153,157,161,174,179,181,199],"\u30ab\u30b9\u30bf\u30e0":[65,126,135],"\u30ab\u30b9\u30bf\u30e0\u30bb\u30ec\u30af\u30bf":39,"\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0":41,"\u30ab\u30bf\u30ab\u30ca":[64,120,161,174,180],"\u30ab\u30c6\u30b4\u30ea":[117,125,127],"\u30ab\u30d0\u30ec\u30c3\u30b8":[],"\u30ab\u30d0\u30fc":14,"\u30ab\u30e9\u30e0":[],"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[],"\u30ab\u30e9\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":88,"\u30ab\u30e9\u30e0\u30d9\u30fc\u30b9":[157,158],"\u30ab\u30e9\u30e0id":63,"\u30ab\u30e9\u30e0n":154,"\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[12,17,134],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9":64,"\u30ab\u30ec\u30fc":193,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":193,"\u30ab\u30f3\u30de":[93,95,158,199,201],"\u30ab\u30fc\u30bd\u30eb":[35,37,57,64],"\u30ab\u30fc\u30cd\u30eb":181,"\u30ab\u30fc\u30cd\u30eb\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[39,181],"\u30ad\u30e3\u30b9\u30c8":[35,38,39,40,157,204],"\u30ad\u30e3\u30c3\u30b7\u30e5":[],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":81,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":46,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30b5\u30a4\u30ba":135,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d2\u30c3\u30c8":40,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb":135,"\u30ad\u30e3\u30f3\u30bb\u30eb":114,"\u30ad\u30e3\u30f3\u30bb\u30eb\u30ea\u30af\u30a8\u30b9\u30c8":114,"\u30ad\u30fc":[32,33,35,38,39,40,41,47,61,63,73,75,84,92,100,102,103,105,114,117,121,133,157,158,161,178,180,182,201],"\u30ad\u30fc\u30b5\u30a4\u30ba":[33,178],"\u30ad\u30fc\u30b5\u30dd\u30fc\u30c8":178,"\u30ad\u30fc\u30dc\u30fc\u30c9":117,"\u30ad\u30fc\u30ef\u30fc\u30c9":[],"\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6":41,"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6\u30fc":41,"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5":135,"\u30af\u30a8\u30ea\u30d1\u30bf\u30f3":132,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":34,"\u30af\u30a8\u30ea\u30d1\u30e9\u30e1\u30fc\u30bf":39,"\u30af\u30a8\u30ea\u30da\u30a2":176,"\u30af\u30a8\u30ea\u30ed\u30b0":[37,39,174,175,177],"\u30af\u30a8\u30ea\u30fc":[],"\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":164,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":[],"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":81,"\u30af\u30a8\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8":117,"\u30af\u30a8\u30ea\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":186,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":[33,41,133,135],"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":133,"\u30af\u30a8\u30ea\u30fcapi":[76,80],"\u30af\u30a8\u30eaapi":33,"\u30af\u30a9\u30fc\u30c8":[106,127,157],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":41,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9":111,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":[35,39,133,136],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea":[1,190],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":41,"\u30af\u30e9\u30c3\u30b7\u30e5":[33,35,37,39,40,41,88,94,124],"\u30af\u30ea\u30a2":[37,39,60],"\u30af\u30ea\u30c3\u30af":117,"\u30af\u30ea\u30fc\u30f3":12,"\u30af\u30ea\u30fc\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[6,7],"\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb":12,"\u30af\u30ed\u30fc\u30f3":28,"\u30b0\u30e9\u30d5":0,"\u30b0\u30eb\u30fc\u30d7":[],"\u30b0\u30eb\u30fc\u30d7\u30ad\u30fc":117,"\u30b0\u30ed\u30fc\u30d0\u30eb":[39,45],"\u30b0\u30ed\u30fc\u30d0\u30eb\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":46,"\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc":163,"\u30b1\u30fc\u30b9":[33,41,46,51,88,94,101,117,121,124,135,157,158,167,180,195,199,208],"\u30b2\u30c3\u30c8":2,"\u30b3\u30a2":[28,135,186],"\u30b3\u30b9\u30c8":[63,159],"\u30b3\u30cd\u30af\u30b7\u30e7\u30f3":33,"\u30b3\u30d4\u30fc":[12,33,39,47,55,60,63,84,88,93,124],"\u30b3\u30de\u30f3\u30c9":[],"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf":11,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[],"\u30b3\u30de\u30f3\u30c9\u30d1\u30fc\u30b5\u30fc":167,"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":[31,39,134],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3":[28,77,78,134,185],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":164,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b7\u30a7\u30eb":157,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b9\u30bf\u30a4\u30eb":167,"\u30b3\u30de\u30f3\u30c9\u30ea\u30b9\u30c8":133,"\u30b3\u30de\u30f3\u30c9url":186,"\u30b3\u30df\u30c3\u30c8":[6,7,12],"\u30b3\u30e1\u30f3\u30c8":[],"\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8":203,"\u30b3\u30e1\u30f3\u30c8\u30ab\u30e9\u30e0":203,"\u30b3\u30e1\u30f3\u30c8\u30c6\u30fc\u30d6\u30eb":203,"\u30b3\u30e1\u30f3\u30c8id":204,"\u30b3\u30ed\u30f3":85,"\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8":[46,50,154],"\u30b3\u30f3\u30c6\u30f3\u30c8\u30bf\u30a4\u30d7":192,"\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb":41,"\u30b3\u30f3\u30d1\u30a4\u30e9":[37,41],"\u30b3\u30f3\u30d1\u30a4\u30e9\u30fc":[6,7,28],"\u30b3\u30f3\u30d1\u30a4\u30eb":[38,40],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30a8\u30e9\u30fc":33,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":12,"\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb":77,"\u30b3\u30fc\u30c9":[17,33,40,41,127],"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":11,"\u30b4\u30df":[35,37,82],"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":82,"\u30b5\u30a4\u30ba":[0,23,24,25,26,30,31,32,33,37,39,40,41,47,58,60,63,64,65,82,121,133,153,155,178,181,192,196,198],"\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":91,"\u30b5\u30a4\u30c8":[12,117,156,198,200],"\u30b5\u30a4\u30c9\u30e1\u30cb\u30e5\u30fc":117,"\u30b5\u30b8\u30a7\u30b9\u30c8":[],"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de":175,"\u30b5\u30d6\u30bb\u30c3\u30c8":[63,182],"\u30b5\u30d6\u30bf\u30b9\u30af":12,"\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":12,"\u30b5\u30dd\u30fc\u30c8":[0,1,6,7,8,10,12,21,28,30,33,34,35,37,38,39,40,41,64,77,103,114,115,116,121,126,127,134,135,151,153,157,158,159,161,163,164,166,167,172,178,180,182,186,189,190,198,199,203,205],"\u30b5\u30de\u30ea":40,"\u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3":143,"\u30b5\u30f3\u30d7\u30eb":[],"\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":35,"\u30b5\u30f3\u30d7\u30eb\u30b7\u30e3\u30fc\u30c9":104,"\u30b5\u30f3\u30d7\u30eb\u30b9\u30ad\u30fc\u30de":[148,149,151,154,155,168,170],"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0":134,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9":[118,119],"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9":133,"\u30b5\u30fc\u30d0\u30fc":[],"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":[],"\u30b5\u30fc\u30d0\u30fc\u30d7\u30ed\u30bb\u30b9":40,"\u30b5\u30fc\u30d0\u30fc\u30e2\u30c7\u30eb":192,"\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9":33,"\u30b5\u30fc\u30d0\u30fcid":37,"\u30b5\u30fc\u30d3\u30b9":[0,21,39,40,41,181],"\u30b5\u30fc\u30d3\u30b9\u30b9\u30af\u30ea\u30d7\u30c8":40,"\u30b7\u30a7\u30a2":2,"\u30b7\u30a7\u30eb":[28,33,133,134,157,167],"\u30b7\u30b0\u30ca\u30eb":[37,41],"\u30b7\u30b9\u30c6\u30e0":[],"\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":40,"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0":[],"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0\u30d0\u30fc\u30b8\u30e7\u30f3":103,"\u30b7\u30e3\u30fc\u30c9":[33,103,104,172],"\u30b7\u30e3\u30fc\u30c9\u30ad\u30fc":103,"\u30b7\u30e3\u30fc\u30d7":121,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":[40,106,127,133,201],"\u30b7\u30f3\u30b0\u30eb\u30b9\u30ec\u30c3\u30c9\u30e2\u30c7\u30eb":126,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9":41,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9\u30a8\u30e9\u30fc":[33,41],"\u30b7\u30f3\u30d7\u30eb":[156,185,199],"\u30b7\u30f3\u30dc\u30eb":85,"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb":33,"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30b5\u30fc\u30c1":[33,159],"\u30b7\u30fc\u30b1\u30f3\u30b9":[174,175,177],"\u30b8\u30aa\u30b5\u30fc\u30c1":[],"\u30b9\u30ab\u30e9":47,"\u30b9\u30ab\u30e9\u30fc":[75,117],"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":[],"\u30b9\u30ab\u30e9\u30fc\u30c7\u30fc\u30bf":75,"\u30b9\u30ad\u30c3\u30d7":[33,40,41],"\u30b9\u30ad\u30e3\u30f3":[146,147],"\u30b9\u30ad\u30fc\u30de":[53,84,92,93,100,103,117,141,143,146,147,148,149,151,153,154,155,157,158,159,167,168,170,172,181,203],"\u30b9\u30af\u30ea\u30d7\u30c8":[],"\u30b9\u30b1\u30fc\u30d7":167,"\u30b9\u30b3\u30a2":[11,33,39,73,75,117,120,138,168,195,208],"\u30b9\u30b3\u30a2\u30e9\u30fc":[],"\u30b9\u30b3\u30a2\u30fc":[],"\u30b9\u30b3\u30fc\u30d7":167,"\u30b9\u30bf\u30c3\u30af\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":40,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3":[133,136],"\u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc":31,"\u30b9\u30c6\u30c3\u30d7":[84,167],"\u30b9\u30c6\u30df\u30f3\u30b0":[41,179],"\u30b9\u30c6\u30fc\u30bf\u30b9":[33,40,80,131,192],"\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9":39,"\u30b9\u30c6\u30fc\u30c8\u30d5\u30eb":192,"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9":[41,117,179,202],"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":41,"\u30b9\u30c8\u30ea\u30fc\u30e0":41,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30e2\u30fc\u30c9":40,"\u30b9\u30cb\u30da\u30c3\u30c8":[40,153],"\u30b9\u30d1\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":33,"\u30b9\u30d1\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb\u30b5\u30dd\u30fc\u30c8":33,"\u30b9\u30da\u30a4\u30f3":143,"\u30b9\u30da\u30eb":166,"\u30b9\u30da\u30fc\u30b9":[33,37,40,117],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8":[37,186],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30c1\u30e3\u30fc\u30c8":37,"\u30b9\u30ec\u30c3\u30c9":[0,9,33,50,65,89,101,126,133,134,186],"\u30b9\u30ec\u30c3\u30c9\u30bb\u30fc\u30d5":33,"\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb":65,"\u30b9\u30ed\u30fc\u30af\u30a8\u30ea\u30fc":[33,135],"\u30b9\u30ef\u30c3\u30d7":181,"\u30b9\u30fc\u30d7":193,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":193,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":193,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":193,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":[],"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":[],"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u30ea\u30b9\u30af":41,"\u30bb\u30af\u30b7\u30e7\u30f3":[3,12,17,20,21,23,24,25,26,27,28,29,30,31,33,41,47,75,76,78,81,84,86,88,89,94,95,96,100,101,102,103,104,105,106,108,114,115,116,117,121,124,125,126,127,129,131,135,140,143,157,162,166,167,168,170,173,174,175,177,181,192,199],"\u30bb\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u30d5\u30a9\u30eb\u30c8":39,"\u30bb\u30b0\u30e1\u30f3\u30c8":[41,60,82,91],"\u30bb\u30c3\u30b7\u30e7\u30f3":[111,133,192],"\u30bb\u30c3\u30c8":[11,60,63,64,83,125,193],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":[17,40,138],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u30b9\u30af\u30ea\u30d7\u30c8":21,"\u30bb\u30df\u30b3\u30ed\u30f3":134,"\u30bb\u30ec\u30af\u30bf\u30fc":33,"\u30bb\u30f3\u30c8\u30e9\u30eb\u30d1\u30fc\u30af":204,"\u30bd\u30b1\u30c3\u30c8":[39,82,83,85,87,90,91,93,97,98,99,111,118,119,122,123],"\u30bd\u30d5\u30c8":166,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":[],"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8":200,"\u30bd\u30fc\u30b9":[],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":[6,7,8,12,28],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":12,"\u30bd\u30fc\u30b9\u30ab\u30e9\u30e0":[33,41,84,86],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":[],"\u30bd\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":17,"\u30bd\u30fc\u30b9\u30d5\u30a9\u30eb\u30c0":31,"\u30bd\u30fc\u30c8":[],"\u30bd\u30fc\u30c8\u30ad\u30fc":[34,63,117,120],"\u30bf\u30a4\u30c8\u30eb":[103,117,157,158,198,200,203],"\u30bf\u30a4\u30d7":[33,37,55,117,134,186],"\u30bf\u30a4\u30df\u30f3\u30b0":[39,201],"\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[40,45],"\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7":[36,174,175,177],"\u30bf\u30b0":[],"\u30bf\u30b0\u30c6\u30ad\u30b9\u30c8":180,"\u30bf\u30d6":[164,166,192],"\u30bf\u30fc\u30b2\u30c3\u30c8":39,"\u30bf\u30fc\u30b2\u30c3\u30c8\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":46,"\u30bf\u30fc\u30df\u30ca\u30eb":135,"\u30c0\u30a4\u30a2\u30ed\u30b0":40,"\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8":186,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":[],"\u30c0\u30d6\u30eb":[37,39,121,157,158,178],"\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":[106,127,133,201],"\u30c0\u30e1\u30fc\u30b8":195,"\u30c0\u30f3\u30d7":[33,35,39,40,93,181],"\u30c1\u30a7\u30c3\u30af":[33,35,37,39,40,41,82,108,131,132,134,141],"\u30c1\u30a7\u30c3\u30af\u30b5\u30e0":12,"\u30c1\u30e3\u30f3\u30af":[33,82],"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba":82,"\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8":82,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":[],"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0":[],"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":181,"\u30c1\u30fc\u30e0":12,"\u30c4\u30a4\u30fc\u30c8":[],"\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3":12,"\u30c4\u30ea\u30fc":41,"\u30c4\u30fc\u30eb":[],"\u30c6\u30ad\u30b9\u30c8":[12,17,33,35,39,40,53,75,106,121,125,127,134,146,147,148,153,161,167,180],"\u30c6\u30ad\u30b9\u30c8\u30ab\u30e9\u30e0":33,"\u30c6\u30ad\u30b9\u30c8\u30c7\u30fc\u30bf":121,"\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":134,"\u30c6\u30b9\u30c8":[],"\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9":14,"\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf":12,"\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":134,"\u30c6\u30fc\u30d6\u30eb":[],"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[122,124],"\u30c6\u30fc\u30d6\u30eb\u30d7\u30e9\u30b0\u30a4\u30f3":39,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id":57,"\u30c7\u30a3\u30b9\u30af":[33,34,89,94,108,203],"\u30c7\u30a3\u30b9\u30af\u30d5\u30eb":33,"\u30c7\u30a3\u30b9\u30afi":121,"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3":[12,28,35],"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":[],"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[],"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9":40,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30fc":[6,7],"\u30c7\u30b6\u30a4\u30f3":39,"\u30c7\u30d0\u30c3\u30ac\u30fc":[6,7],"\u30c7\u30d0\u30c3\u30b0":[6,7,33,41,82,127,135],"\u30c7\u30d0\u30c3\u30b0\u30aa\u30d7\u30b7\u30e7\u30f3":[6,7],"\u30c7\u30d0\u30c3\u30b0\u30ed\u30b0":33,"\u30c7\u30d5\u30a9\u30eb\u30c8":[6,7,8,11,28,33,34,35,37,38,39,40,41,45,48,50,52,59,75,77,90,93,95,99,101,102,103,117,120,121,125,127,132,133,134,135,143,144,151,157,158,159,164,181,182,186,192,193,195,198,199,201],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[39,84,121,175],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30dd\u30fc\u30c8":41,"\u30c7\u30d5\u30e9\u30b0":37,"\u30c7\u30d7\u30ed\u30a4":135,"\u30c7\u30e1\u30ea\u30c3\u30c8":178,"\u30c7\u30fc\u30bf":[],"\u30c7\u30fc\u30bf\u30ab\u30e9\u30e0":131,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2":46,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[71,75],"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0":71,"\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8":[120,174],"\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb":134,"\u30c7\u30fc\u30bf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":186,"\u30c7\u30fc\u30bf\u30d9\u30fc":37,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b5\u30a4\u30ba":181,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b9\u30ad\u30fc\u30de":93,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":[40,181],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":[],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u30b3\u30de\u30f3\u30c9":172,"\u30c7\u30fc\u30e2\u30f3":[],"\u30c7\u30fc\u30e2\u30f3\u30d7\u30ed\u30bb\u30b9":135,"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":[40,41,133],"\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":14,"\u30c8\u30c3\u30d7\u30da\u30fc\u30b8":12,"\u30c8\u30c3\u30d7\u30ec\u30d9\u30eb\u30c9\u30e1\u30a4\u30f3":199,"\u30c8\u30d4\u30c3\u30af":12,"\u30c8\u30e2":200,"\u30c8\u30e9\u30a4":[37,121,157,158,178],"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[],"\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5":[180,195],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3":39,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3api":39,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[41,127],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30e2\u30fc\u30b8\u30e5\u30fc\u30eb":180,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fcapi":39,"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":[],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u30e2\u30fc\u30c9":[125,127],"\u30c8\u30fc\u30af\u30f3":[33,35,37,40,41,121,125,127,158,161,175,177,178,179,180,193],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf":41,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":[],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":179,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":179,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30c4\u30fc\u30eb":[15,18],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8":12,"\u30c9\u30e1\u30a4\u30f3":[41,199],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[],"\u30ca\u30ce":[35,78],"\u30cb\u30c3\u30dd\u30f3":174,"\u30cb\u30db\u30f3":174,"\u30cb\u30db\u30f3\u30b4":174,"\u30cb\u30db\u30f3\u30b8\u30f3":174,"\u30cb\u30e5\u30fc\u30b9":159,"\u30cb\u30e5\u30fc\u30e8\u30fc\u30af":[143,204],"\u30cd\u30b9\u30c8":[33,39,40,41,203],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":[186,205],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":[39,192],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d7\u30ed\u30c8\u30b3\u30eb":39,"\u30ce\u30a4\u30ba":[175,195],"\u30ce\u30fc\u30c9":[39,64],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":[],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d7\u30b7\u30e7\u30f3":161,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[106,161],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":161,"\u30ce\u30fc\u30de\u30e9\u30a4\u30ba":[40,41,106,127,201],"\u30cf\u30a4\u30d5\u30f3":[121,201],"\u30cf\u30a4\u30e9\u30a4\u30c8":[146,147],"\u30cf\u30c3\u30b7\u30e5":[12,33,39,82,119],"\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb":[37,40,121,158,178],"\u30d0\u30a4\u30b0\u30e9\u30e0":[180,195],"\u30d0\u30a4\u30b0\u30e9\u30e0\u30d9\u30fc\u30b9":180,"\u30d0\u30a4\u30c8":[33,35,37,39,40,41,47,50,64,80,117,153,178,182],"\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":39,"\u30d0\u30a4\u30c8\u30b5\u30a4\u30ba":[33,53],"\u30d0\u30a4\u30c8\u30b7\u30fc\u30b1\u30f3\u30b9":40,"\u30d0\u30a4\u30ca\u30ea":[12,31],"\u30d0\u30a4\u30ca\u30ea\u30c7\u30fc\u30bf":39,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":[],"\u30d0\u30a4\u30ca\u30ea\u30fc":78,"\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":[20,21,156],"\u30d0\u30a4\u30f3\u30c9":33,"\u30d0\u30b0":[10,33,37,40],"\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9":33,"\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9\u30ea\u30ea\u30fc\u30b9":[33,39,41],"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":[],"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7":93,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":[40,53,133,157],"\u30d0\u30c3\u30c1\u30e2\u30fc\u30c9":39,"\u30d0\u30c3\u30d5\u30a1":[39,40,47,53,55,58,60,63,82,203],"\u30d0\u30c3\u30d5\u30a1\u30b5\u30a4\u30ba":33,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8":82,"\u30d0\u30c3\u30d5\u30a1\u30ea\u30f3\u30b0":40,"\u30d0\u30c3\u30d5\u30a1id":82,"\u30d0\u30ea\u30e5\u30fc\u30b5\u30dd\u30fc\u30c8":178,"\u30d0\u30eb\u30af\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":33,"\u30d0\u30f3\u30c9\u30eb":[33,40,41],"\u30d1\u30a4\u30d7":85,"\u30d1\u30b9":[12,28,33,35,36,37,41,51,86,109,110,113,131,132,133,134,135,136,139,186,192,201],"\u30d1\u30b9\u30b9\u30bf\u30a4\u30eb":167,"\u30d1\u30bf\u30fc\u30f3":[33,78,157,158,167],"\u30d1\u30bf\u30fc\u30f3\u30de\u30c3\u30c1":167,"\u30d1\u30c3\u30b1\u30fc\u30b8":[],"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9":35,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30f3\u30b0\u30dd\u30ea\u30b7\u30fc":40,"\u30d1\u30c3\u30c1":[],"\u30d1\u30c8\u30ea\u30b7\u30a2":[],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4":[35,37,40,121,157,158,178],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30c6\u30fc\u30d6\u30eb":[157,158],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30ce\u30fc\u30c9":33,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":[33,40,41,132,135,149,190],"\u30d1\u30e9\u30e1\u30bf":[45,46,47,48,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65,66,67,69],"\u30d1\u30e9\u30e1\u30fc\u30bf":[],"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[],"\u30d1\u30ea":143,"\u30d1\u30fc\u30b5\u30fc":[12,157,167],"\u30d1\u30fc\u30b9":[37,52,53,156],"\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3":41,"\u30d2\u30c3\u30c8":[11,40,117,159,174,193,195,204,206],"\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2":[117,156,195],"\u30d2\u30e5\u30d9\u30cb":[143,144],"\u30d3\u30c3\u30b0\u30a8\u30f3\u30c7\u30a3\u30a2\u30f3":41,"\u30d3\u30c3\u30c8":[],"\u30d3\u30c3\u30c8\u30b7\u30d5\u30c8":158,"\u30d3\u30e5\u30fc":39,"\u30d3\u30eb\u30c8\u30a4\u30f3":40,"\u30d3\u30eb\u30c9":[],"\u30d3\u30eb\u30c9\u30a8\u30e9\u30fc":[33,41],"\u30d3\u30eb\u30c9\u30aa\u30d7\u30b7\u30e7\u30f3":[28,31],"\u30d3\u30eb\u30c9\u30b7\u30b9\u30c6\u30e0":[5,28],"\u30d3\u30eb\u30c9\u30bf\u30a4\u30e0":[6,7],"\u30d3\u30eb\u30c9\u30c4\u30fc\u30eb":6,"\u30d3\u30eb\u30c9\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[6,7,8],"\u30d4\u30ea\u30aa\u30c9":[85,203],"\u30d5\u30a1\u30a4\u30eb":[],"\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba":33,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0":37,"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf":35,"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u30fc":39,"\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9":[47,51,60,63],"\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":166,"\u30d5\u30a1\u30bb\u30c3\u30c8":117,"\u30d5\u30a3\u30eb\u30bf":[33,39],"\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0":40,"\u30d5\u30a3\u30eb\u30bf\u30fc":154,"\u30d5\u30a3\u30eb\u30bf\u30fc\u30c6\u30ad\u30b9\u30c8":117,"\u30d5\u30a3\u30fc\u30eb\u30c9":86,"\u30d5\u30a9\u30eb\u30c0\u30fc":31,"\u30d5\u30a9\u30ed\u30ef\u30fc":12,"\u30d5\u30a9\u30ed\u30fc":[],"\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8":204,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[],"\u30d5\u30a9\u30fc\u30e0":[40,117,156,157],"\u30d5\u30c3\u30af":21,"\u30d5\u30e9\u30b0":[33,34,37,38,39,41,50,64,75,82,83,85,86,87,90,97,98,99,106,117,121,123,127,157,158,161,167,192,198,201,202,206],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":91,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3":[34,91],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8":60,"\u30d5\u30e9\u30c3\u30b7\u30e5":33,"\u30d5\u30e9\u30f3\u30b9":143,"\u30d5\u30ec\u30fc\u30ba":[],"\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af":14,"\u30d6\u30c3\u30af\u30de\u30fc\u30af":75,"\u30d6\u30e9\u30a6\u30b6":[12,17,28,205],"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":[],"\u30d6\u30e9\u30b8\u30ea\u30a2":143,"\u30d6\u30e9\u30b8\u30eb":143,"\u30d6\u30ed\u30b0":[],"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea":[117,157,158,203],"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea\u30fc":103,"\u30d6\u30ed\u30c3\u30af":[0,40,135],"\u30d6\u30fc\u30ea\u30a2\u30f3":182,"\u30d6\u30fc\u30eb":[182,198],"\u30d7\u30e9\u30b0\u30a4\u30f3":[0,17,24,25,26,28,30,33,34,35,36,37,39,40,41,93,100,101,102,103,104,109,110,113,115,116,151,155,161,166,172,179],"\u30d7\u30e9\u30b0\u30a4\u30f3api":41,"\u30d7\u30e9\u30b0\u30de":117,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0":[14,17,23,28,37],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9":[65,135,172,178,201],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":[],"\u30d7\u30ec\u30fc\u30b9\u30db\u30eb\u30c0":40,"\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":1,"\u30d7\u30ed\u30b0\u30e9\u30e0":[3,35,39,86,135,158],"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[],"\u30d7\u30ed\u30bb\u30b9":[],"\u30d7\u30ed\u30bb\u30b9id":192,"\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3":135,"\u30d7\u30ed\u30c8\u30b3\u30eb":[],"\u30d7\u30ed\u30f3\u30d7\u30c8":164,"\u30d8\u30c3\u30c0":[40,41],"\u30d8\u30c3\u30c0\u30d5\u30a1\u30a4\u30eb":39,"\u30d8\u30c3\u30c0\u30fc":[],"\u30d8\u30eb\u30d7":14,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8":[35,133],"\u30d9\u30af\u30bf":[34,35,39,40,60],"\u30d9\u30af\u30bf\u30ab\u30e9\u30e0":[37,39,40],"\u30d9\u30af\u30bf\u30fc":[],"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[],"\u30d9\u30af\u30bf\u30fc\u30c7\u30fc\u30bf":75,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af":41,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb":134,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30d7\u30ed\u30b0\u30e9\u30e0":40,"\u30d9\u30fc\u30b7\u30c3\u30af":186,"\u30d9\u30fc\u30b9":[0,17,35,37,39,41,63,64,114,127,157,158,172,180,185,190],"\u30d9\u30fc\u30b9\u30d1\u30b9":135,"\u30da\u30a2":[117,166,174,175,176,177,198,207],"\u30da\u30fc\u30b8":[2,12,17,22,33,39,40,117,133,136,201],"\u30da\u30fc\u30b9\u30c8":39,"\u30db\u30b9\u30c8":[12,37,39,132,133,134,192],"\u30dc\u30bf\u30f3":[12,17,39,40],"\u30dc\u30c3\u30af\u30b9":117,"\u30dc\u30c7\u30a3":[84,89,94,108,109,110,113,121,124,126,192],"\u30dd\u30a4\u30f3\u30bf":[50,60,61,63,64,67],"\u30dd\u30a4\u30f3\u30c8":[75,166],"\u30dd\u30b9\u30c6\u30a3\u30f3\u30b0\u30ea\u30b9\u30c8":33,"\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3":[37,40],"\u30dd\u30fc\u30c8":[40,132,133,134,164,186,190,192,205],"\u30de\u30a4\u30af\u30ed":[158,182,198,204],"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":[],"\u30de\u30af\u30c9\u30ca\u30eb\u30c9":163,"\u30de\u30af\u30ed":[33,37,40,60],"\u30de\u30b7\u30f3":[133,172],"\u30de\u30c3\u30c1":[],"\u30de\u30c3\u30c1\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":28,"\u30de\u30c3\u30d4\u30f3\u30b0":196,"\u30de\u30c3\u30d7":[33,89,181],"\u30de\u30c9\u30ea\u30fc\u30c9":143,"\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[33,40,41,86,203],"\u30de\u30eb\u30c1\u30b3\u30a2":0,"\u30de\u30eb\u30c1\u30b3\u30a2cpu":28,"\u30de\u30eb\u30c1\u30b9\u30ec\u30c3\u30c9":[33,41,89,114,186],"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3":40,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":87,"\u30de\u30eb\u30c1\u30d0\u30a4\u30c8":37,"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9":[37,186],"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30e2\u30c7\u30eb":41,"\u30de\u30eb\u30c1\u30e9\u30a4\u30f3\u30e2\u30fc\u30c9":167,"\u30de\u30fc\u30af":180,"\u30de\u30fc\u30af\u30a2\u30c3\u30d7":33,"\u30de\u30fc\u30b8":[17,39],"\u30df\u30b9":174,"\u30df\u30ea":[37,158,182,198,208],"\u30df\u30ea\u79d2":182,"\u30e1\u30bd\u30c3\u30c9":33,"\u30e1\u30bf\u30c7\u30fc\u30bf":[86,115,116],"\u30e1\u30bf\u30d1\u30c3\u30b1\u30fc\u30b8":39,"\u30e1\u30c3\u30bb\u30fc\u30b8":[6,7,33,41,77,204],"\u30e1\u30c3\u30bb\u30fc\u30b8\u30dc\u30c7\u30a3":40,"\u30e1\u30e2\u30ea":[],"\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":14,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0":35,"\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af":119,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":[14,33,34,35,37,39,40,41,85],"\u30e1\u30e2\u30ea\u30fc":[33,89,94,121,181],"\u30e1\u30e2\u30ea\u30fc\u30a2\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3":33,"\u30e1\u30e2\u30ea\u30fc\u30de\u30c3\u30d7":181,"\u30e1\u30e2\u30ea\u30fc\u30ea\u30fc\u30af":33,"\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u30b3\u30b9\u30c8":180,"\u30e1\u30f3\u30d0":63,"\u30e1\u30fc\u30c8\u30eb":[143,144],"\u30e1\u30fc\u30eb":[12,17,19],"\u30e2\u30b8\u30e5\u30fc\u30eb":[],"\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0":40,"\u30e2\u30cb\u30bf\u30fc":[24,25,26,30],"\u30e2\u30fc\u30c9":[11,33,41,127,133,136,192,201],"\u30e6\u30fc\u30b6":[11,12,39,85,117,134,174,175,176,177,182,201],"\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf":67,"\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0":11,"\u30e6\u30fc\u30b6\u30fc":[],"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8":10,"\u30e6\u30fc\u30b9\u30b1\u30fc\u30b9":[75,84,180],"\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":35,"\u30e9\u30a4\u30bb\u30f3\u30b9":39,"\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":[33,41,68,126],"\u30e9\u30d9\u30eb":[33,40,41,103,117],"\u30e9\u30f3\u30ad\u30f3\u30b0":[41,201],"\u30e9\u30f3\u30c0\u30e0":208,"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0":0,"\u30ea\u30af\u30a8\u30b9\u30c8":[40,41,76,79,82,83,85,87,90,91,93,97,98,99,111,114,117,118,119,122,123,132,135,136,158,186,192],"\u30ea\u30af\u30a8\u30b9\u30c8gqtp":192,"\u30ea\u30af\u30a8\u30b9\u30c8id":[],"\u30ea\u30af\u30a8\u30b9\u30c8uri":135,"\u30ea\u30af\u30e9\u30c3\u30b7\u30e5":39,"\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3":33,"\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3\u30d0\u30b0":41,"\u30ea\u30b9\u30c8":[12,13,17,33,39,53,94,95,101,104,117,121,122,133,157,158,161,163,166,167,179,180,200,201],"\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7":12,"\u30ea\u30bd\u30fc\u30b9":[41,46,68,159],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":[],"\u30ea\u30c6\u30e9\u30eb":[],"\u30ea\u30c8\u30e9\u30a4":45,"\u30ea\u30cd\u30fc\u30e0":[33,37,84],"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed":135,"\u30ea\u30d3\u30eb\u30c9":33,"\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":12,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":[],"\u30ea\u30dd\u30b8\u30c8\u30ea":[],"\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf":12,"\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc":[3,4],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":[],"\u30ea\u30ea\u30fc\u30b9":[],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":[],"\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea":12,"\u30ea\u30ea\u30fc\u30b9\u30b7\u30b9\u30c6\u30e0":7,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":12,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":[],"\u30ea\u30f3\u30af":[12,13,33,39,40,41,117,157,158,198],"\u30eb\u30fc\u30c8":37,"\u30eb\u30fc\u30d7":[35,39,41],"\u30eb\u30fc\u30eb":[],"\u30ec\u30a4\u30e4":11,"\u30ec\u30b3\u30fc\u30c9":[],"\u30ec\u30b3\u30fc\u30c9id":[],"\u30ec\u30b3\u30fc\u30c9r":11,"\u30ec\u30b9\u30c8\u30e9\u30f3":0,"\u30ec\u30b9\u30dd\u30f3\u30b9":[37,39,40,41,46,80,84,102,117,186,192],"\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf":186,"\u30ec\u30b9\u30dd\u30f3\u30b9\u30d8\u30c3\u30c0\u30fc":186,"\u30ec\u30d9\u30eb":[33,39,41,97,98,133],"\u30ec\u30dd\u30fc\u30c8":28,"\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0":0,"\u30ec\u30fc\u30bf":39,"\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0":141,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3":34,"\u30ed\u30ac\u30fc":33,"\u30ed\u30ae\u30f3\u30b0":[33,50],"\u30ed\u30b0":[],"\u30ed\u30b0\u30a4\u30f3":[12,181],"\u30ed\u30b0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":41,"\u30ed\u30b0\u30d1\u30b9":35,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":[28,33,77,99,117,133,134,196],"\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8":[33,39,40,167],"\u30ed\u30b0\u30ec\u30d9\u30eb":[33,135],"\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":[33,133],"\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30c8":33,"\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3":39,"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8":12,"\u30ed\u30b4":39,"\u30ed\u30c3\u30af":[34,37,39,40,45,60,83,96,133],"\u30ed\u30c3\u30af\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[40,45],"\u30ed\u30f3\u30c9\u30f3":143,"\u30ed\u30fc\u30ab\u30eb":[12,158],"\u30ed\u30fc\u30c6\u30fc\u30c8":133,"\u30ed\u30fc\u30c9":[],"\u30ed\u30fc\u30c9\u30a8\u30e9\u30fc":39,"\u30ed\u30fc\u30de":174,"\u30ef\u30a4\u30c9":37,"\u30ef\u30fc\u30ab":135,"\u30ef\u30fc\u30ab\u30fc":135,"\u30ef\u30fc\u30ab\u30fc\u30b9\u30ec\u30c3\u30c9":40,"\u30fb\u30b5\u30fc\u30d0":201,"\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":204,"\u30fb\u5168":90,"\u30fb\u5186":0,"\u30fb\u6d6e\u52d5\u5c0f":117,"\u30fb\u81ea\u5df1\u7d39":204,"\u30fbgroonga":33,"\u30fbor":208,"\u30fbroot":33,"\u4e00\u3064":[0,46,47,50,63,77,82,83,85,87,90,91,93,97,98,99,111,118,119,122,123,142,143,144,145,148,150,152,154,155,182,193,198],"\u4e00\u4ef6":64,"\u4e00\u4ef6\u9032\u3081":[],"\u4e00\u500b":11,"\u4e00\u5207":33,"\u4e00\u5bfe":198,"\u4e00\u5de5":206,"\u4e00\u5ea6":[37,39,41,45,109,113,135,159,161,166,181,199,203],"\u4e00\u5f0f":60,"\u4e00\u610f":[73,85,114,133],"\u4e00\u62ec":63,"\u4e00\u62ec\u3057":[],"\u4e00\u6587":41,"\u4e00\u6587\u5b57":33,"\u4e00\u65b9":[0,65,68,117,147,151,153,154,157,158,180,195,198,201,203],"\u4e00\u6642":[],"\u4e00\u6642\u7684":60,"\u4e00\u6642\u7d50\u679c":[],"\u4e00\u6b69":[],"\u4e00\u6c17":12,"\u4e00\u756a":[28,75,117,158,186],"\u4e00\u756a\u5de6":[],"\u4e00\u77ed":0,"\u4e00\u7dd2":[34,39,41,47,50,75,117,121,143,155,180,195,201],"\u4e00\u7fa4":11,"\u4e00\u81f4":[],"\u4e00\u81f4\u3057":[],"\u4e00\u81f4\u7528":[],"\u4e00\u822c":[0,21,46,60,117,156,157,180,201],"\u4e00\u822c\u7684":[],"\u4e00\u884c":[35,133,134],"\u4e00\u89a7":[],"\u4e00\u8a9e":195,"\u4e00\u8cab":[10,33],"\u4e00\u8cab\u6027":[],"\u4e00\u90e8":[12,33,39,87,172,176,180,201],"\u4e00\u9577":0,"\u4e09\u3064":[143,193],"\u4e09\u756a\u76ee":158,"\u4e09\u7a2e":[1,205],"\u4e09\u8c37":41,"\u4e09\u8c37\u3055\u3093":[],"\u4e0a\u304c\u3063":180,"\u4e0a\u3052\u308b":195,"\u4e0a\u4f4d":[63,195],"\u4e0a\u554f":190,"\u4e0a\u66f8\u304d":[12,208],"\u4e0a\u8a18":[17,21,28,32,33,39,100,117,121,134,141,148,151,154,166,175,177,180,192,195,199,201,208],"\u4e0a\u8a18url":12,"\u4e0a\u8ff0":166,"\u4e0a\u91ce":35,"\u4e0a\u9650":[],"\u4e0b\u304c\u3063":180,"\u4e0b\u304c\u308a":195,"\u4e0b\u3055\u3044":[1,12,23,24,25,26,30,31,39,40,63,86,127],"\u4e0b\u66f8\u304d":163,"\u4e0b\u8a18":[11,64,77,82,119],"\u4e0b\u90e8":12,"\u4e0b\u9650":[57,64],"\u4e0d\u5177\u5408":[3,33,39,40,41],"\u4e0d\u5909":73,"\u4e0d\u5b8c\u5168":37,"\u4e0d\u5fc5\u8981":33,"\u4e0d\u610f":94,"\u4e0d\u6574\u5408":34,"\u4e0d\u6b63":[14,33,34,35,37,40,41,94,121],"\u4e0d\u6b63\u78ba":[39,119],"\u4e0d\u80fd":134,"\u4e0d\u8981":[0,33,39,40,41,180],"\u4e0d\u8db3":[23,24,25,26,30,31,33,41],"\u4e0d\u9069\u5207":[39,41],"\u4e0e\u3048":[11,39,40,52,64,95,133,192,195,201],"\u4e0e\u3048\u308b":[77,95,132,133,208],"\u4e16\u4ee3":77,"\u4e16\u754c":[143,144,145,182,198,208],"\u4e21\u65b9":[0,75,103,117,157,158,159,174,178,180,204,206],"\u4e21\u8005":208,"\u4e26\u3073":[158,193],"\u4e26\u3073\u9806":208,"\u4e26\u3079":[],"\u4e2d\u4e95":40,"\u4e2d\u56fd":143,"\u4e2d\u592e\u5024":41,"\u4e2d\u5fc3":144,"\u4e2d\u65ad":[37,39,41,55],"\u4e2d\u7a0b\u5ea6":[23,24,25,26,30,31],"\u4e2d\u8eab":[41,134,192,201],"\u4e2d\u9593":[11,193],"\u4e38\u62ec":201,"\u4e3b\u30ad\u30fc":[],"\u4e3b\u8981":23,"\u4e43\u6bc5":35,"\u4e57\u308a":100,"\u4e71\u6570":[152,208],"\u4e88\u3081":[133,182],"\u4e88\u5b9a":[16,37,75,77,115,116,143,153,167,172,186],"\u4e88\u7d04":85,"\u4e8b\u524d":[12,100,101,102,104,115,116,176,195],"\u4e8b\u67c4":10,"\u4e8b\u9805":[],"\u4e8c\u3064":[50,77,100,102,103,105,106,127,134,143,149,151,154,193],"\u4e8c\u3064\u76ee":11,"\u4e8c\u70b9\u9593":143,"\u4e8c\u756a":117,"\u4e8c\u756a\u76ee":158,"\u4e8c\u91cd":[33,40,41,157],"\u4e8c\u9805":158,"\u4e92\u63db":[12,24,25,26,30,33,41,77,103,106,136,158,186],"\u4e92\u63db\u6027":12,"\u4e94\u5165":37,"\u4eac\u90fd":[180,193,195],"\u4eba\u3068":10,"\u4eba\u5411\u3051":33,"\u4eca\u56de":[39,153,158,201],"\u4eca\u5f8c":[37,99,115,127,167],"\u4ecb\u3057":[0,205],"\u4ecb\u6587":204,"\u4ed5\u65b9":[],"\u4ed5\u69d8":[],"\u4ed5\u7d44":[17,186],"\u4ed5\u7d44\u307f":[39,135],"\u4ed8\u3044":161,"\u4ed8\u304d":[],"\u4ed8\u3051":[39,92,114,141,146,147,186,192,198,201,203],"\u4ed8\u3051\u308b":[9,158,161,179,201,207],"\u4ed8\u4e0e":[],"\u4ed8\u5c5e":[135,136],"\u4ed8\u968f":[87,123],"\u4ee3\u308a":[39,143,157],"\u4ee3\u308f\u308a":[28,31,117,121,133,135,146,147,153,157,161,167,180,192],"\u4ee3\u5165":[],"\u4ee3\u8868":0,"\u4ee5\u4e0a":[],"\u4ee5\u4e0b":[],"\u4ee5\u5185":[158,174,175,204,208],"\u4ee5\u524d":[33,37,39,40,41,161,195,198,204],"\u4ee5\u5916":[0,11,12,35,37,40,41,46,47,50,51,53,57,60,63,66,68,75,103,117,119,121,131,134,157,163,167,178,182],"\u4ee5\u964d":[12,14,17,33,35,37,40,41,88,100,124,133,146,147,148,161,163,180,205],"\u4eee\u5b9a":114,"\u4eee\u60f3":[12,33,40,199,208],"\u4ef6\u542b":204,"\u4ef6\u6570":[33,41,60,63,73,95,193,195,201],"\u4efb\u610f":[0,12,133,134,201],"\u4f1a\u793e":[33,41],"\u4f1d\u7d71":0,"\u4f3c\u305f":161,"\u4f4e\u3044":195,"\u4f4e\u304f":[180,195],"\u4f4e\u4e0b":40,"\u4f4e\u6a5f":11,"\u4f4e\u6e1b":[35,190],"\u4f4f\u3093":204,"\u4f4f\u6240":39,"\u4f50\u85e4":33,"\u4f53\u8fd1":144,"\u4f55\u3089\u304b":182,"\u4f55\u500b":117,"\u4f55\u5ea6":[40,114],"\u4f59\u308a":158,"\u4f59\u8a08":10,"\u4f5c\u3063":[37,63,64,108,135,161,174,195,199],"\u4f5c\u3089":100,"\u4f5c\u3089\u308c":[41,134],"\u4f5c\u308a":[41,121,174,175,181,203],"\u4f5c\u308b":[],"\u4f5c\u308c\u308b":33,"\u4f5c\u6210":[],"\u4f5c\u6210\u6e08":133,"\u4f5c\u696d":[],"\u4f5c\u7528":39,"\u4f75\u305b":201,"\u4f7f\u3044":[],"\u4f7f\u3044\u5206\u3051":[193,195],"\u4f7f\u3044\u65b9":[],"\u4f7f\u3046":[],"\u4f7f\u3048":[6,8,21,33,37,40,41,84,89,102,103,114,117,121,127,135,140,141,156,157,158,167,172,180,184,185,199,201],"\u4f7f\u3048\u308b":[21,28,33,37,39,40,41,117,133,157,167,172],"\u4f7f\u3063":[3,5],"\u4f7f\u308f":[12,21,33,37,40,41,46,50,80,94,101,103,108,117,121,127,135,141,156,157,161,166,167,174,178,180,192,199,200,207],"\u4f7f\u308f\u305a":151,"\u4f7f\u7528":[],"\u4f7f\u7528\u4f8b":143,"\u4f8b\u3068\u3057\u3066":[181,198],"\u4f8b\u3068\u3068\u3082":143,"\u4f8b\u5916":[26,41,84,115,116],"\u4f9d\u5b58":[],"\u4fbf\u5229":[0,1,6,7,28,33,47,75,78,100,101,106,117,127,156,157,167,174,198],"\u4fc2\u6570":[11,117],"\u4fdd\u5b58":[],"\u4fdd\u6301":[46,50,198,202,204],"\u4fdd\u8a3c":[77,82],"\u4fee\u5e73":41,"\u4fee\u6b63\u4e2d":175,"\u500b\u3005":[11,77,100,102,105,195],"\u500b\u4eba":28,"\u500b\u5225":12,"\u500b\u5b9a":9,"\u500b\u6240":41,"\u500b\u6570":[39,47],"\u500d\u7cbe":182,"\u5019\u88dc":[120,174,175,176],"\u5024\u304b":143,"\u5024\u3054":199,"\u5024\u3054\u3068":199,"\u5024\u3060\u3051":158,"\u5024\u3068":[117,157,198],"\u5024\u3068\u3057\u3066":[133,143,196,204],"\u5024\u306a\u3057":38,"\u5024\u306a\u3089":40,"\u5024\u3088\u308a":[11,117],"\u5024\u4ee5\u4e0a":133,"\u5024\u578b":198,"\u5024\u57df":71,"\u5024\u6bce":199,"\u5024\u7528":37,"\u5024\u8a18":158,"\u505c\u6b62":[33,40,77,88,118,124,133],"\u5065\u4f5c":200,"\u5074\u9762":0,"\u5076\u6570":158,"\u5099\u8003":40,"\u50be\u5411":203,"\u512a\u308c":[0,180],"\u512a\u5148":[0,89,134,174],"\u5143\u6c17":40,"\u5148\u60c5":204,"\u5148\u982d":[55,60,117,135,167,180,201],"\u5149\u7537":40,"\u5165\u3063":[14,33,39,40,78,174,192,200,201,203],"\u5165\u308a":[],"\u5165\u308b":122,"\u5165\u308c":[180,195,200,204],"\u5165\u308c\u308b":167,"\u5165\u529b":[34,37,38,40,78,82,83,85,87,90,91,93,95,97,99,111,117,119,120,122,123,132,133,134,158,174,175,176,177,192,201],"\u5165\u529b\u30df\u30b9":175,"\u5168\u304f":33,"\u5168\u3066":[17,63,117,135,156,159,182,203],"\u5168\u4e16\u754c":40,"\u5168\u4ef6":[64,157,158],"\u5168\u4f53":[],"\u5168\u6587\u691c":[],"\u5168\u6587\u691c\u7d22":[],"\u5168\u89d2":[33,37,64,161,201],"\u5168\u90e8":192,"\u5168suffix":63,"\u516c\u5e73":40,"\u516c\u5f0f":[8,24,26,37,151],"\u516c\u8f14":40,"\u516c\u958b":[12,35,37,40,41,46],"\u516c\u958b\u9375":12,"\u5171\u306b":[47,60],"\u5171\u901a":[10,37,100,102,105,158,178,182,203],"\u5171\u901a\u63a5":178,"\u5177\u4f53":[117,195,199,203],"\u5177\u4f53\u4f8b":[84,103],"\u5177\u5408":[117,158],"\u5178\u578b":33,"\u5185\u5bb9":[10,12,17,33,39,41,51,55,58,64,78,86,103,117,122,132,134,153,157,158,174,177,181,190,198,201,203,204,205],"\u5185\u8a33":195,"\u5185\u8fd1\u304f":158,"\u5185\u90e8":[12,33,38,41,46,50,56,60,63,119,153,198],"\u5186\u6ed1":12,"\u518d\u3073":41,"\u518d\u4f5c":33,"\u518d\u5229":[41,73,178],"\u518d\u5e30":[11,60,83,117,123,135,166],"\u518d\u5ea6":[11,33,41,45],"\u518d\u691c":156,"\u518d\u69cb":37,"\u518d\u73fe":[10,40,156,180,195],"\u518d\u751f":135,"\u518d\u767a":41,"\u518d\u8aad":[99,166],"\u518d\u8d77":[33,166,181,190],"\u518d\u8d77\u52d5":[],"\u51e6\u7406":[0,6,7,11,17,33,34,35,39,40,41,55,73,76,80,94,106,117,121,125,127,134,135,147,153,157,158,179,180,186,192,193,208],"\u51fa\u3055":40,"\u51fa\u3057":204,"\u51fa\u3059":204,"\u51fa\u305b\u308b":0,"\u51fa\u529b":[],"\u51fa\u6765":[127,200,203],"\u51fa\u6765\u308b":204,"\u51fa\u73fe":[0,33,47,86,120,202],"\u5206\u304b\u3061":0,"\u5206\u3051":[],"\u5206\u3051\u308b":[12,198],"\u5206\u307e":172,"\u5206\u5272":[0,33,37,158,178,180,193,201],"\u5206\u5c90":14,"\u5206\u6563":172,"\u5206\u6790":0,"\u5206\u89e3":[11,172],"\u5206\u914d":103,"\u5206\u985e":[198,199],"\u5206z":182,"\u5207\u3089":41,"\u5207\u308a":[12,33,37,40,41,111],"\u5207\u308a\u6368\u3066":198,"\u5207\u308b":[41,135],"\u5207\u308c":33,"\u5217\u4e2d":158,"\u5217\u578b":[41,157,198,199],"\u5217\u5f0f":53,"\u5217\u5f15":11,"\u5217\u60c5":127,"\u5217\u6307\u5411":0,"\u5217\u6319":201,"\u5217\u8868":[53,182],"\u521d\u56de":17,"\u521d\u671f":[0,35,37,39,41,51,60],"\u521d\u671f\u5024":132,"\u521d\u671f\u5316":[33,39,50,61,68],"\u5224\u5b9a":208,"\u5224\u65ad":[51,117,158],"\u5225\u3005":[117,199],"\u5225\u9014":[60,182],"\u5229\u70b9":0,"\u5229\u7528":[],"\u5229\u7528\u4f8b":0,"\u5230\u9054":32,"\u5236\u5fa1":[],"\u5236\u7d04":32,"\u5236\u9650":[],"\u5247\u3063":172,"\u524a\u6e1b":33,"\u524a\u9664":[],"\u524d\u3082\u3063":33,"\u524d\u4ed8":102,"\u524d\u4ed8\u304d":60,"\u524d\u56de":12,"\u524d\u5f8c":[133,201],"\u524d\u63d0":[],"\u524d\u65b9":[],"\u524d\u65b9\u4e00\u81f4":[],"\u524d\u8005":[161,166,208],"\u524d\u8ff0":[121,135,161,195],"\u5270\u4f59":[],"\u5272\u308a":[50,114,122,127,158,178,198],"\u5272\u308a\u5f53\u3066":[35,46],"\u5272\u308a\u5f53\u3066\u308b":[79,178,198,201],"\u52a0\u3048":[11,21,94,198,206],"\u52a0\u3048\u308b":[37,85,94],"\u52a0\u308f\u308b":10,"\u52a0\u7b97":[],"\u52b9\u679c":[101,204],"\u52b9\u7387":[33,94,203],"\u52c9\u5f37":180,"\u52d5\u3044":65,"\u52d5\u304b":[33,40,41,89,167],"\u52d5\u304b\u3057":181,"\u52d5\u304d":[33,117,126,172,186],"\u52d5\u304f":[28,37,39,181,185],"\u52d5\u4f5c":[],"\u52d5\u5c0f":182,"\u52d5\u74b0":132,"\u52d5\u753b":200,"\u52d5\u7684":[],"\u52e7\u3081":41,"\u5316\u4f5c":12,"\u5316\u51e6":[37,73],"\u5316\u524d":73,"\u5316\u5bfe":17,"\u5316\u65b9":[106,161],"\u5316\u6642":37,"\u5316\u6e08":[51,60],"\u5316\u6f0f\u308c":39,"\u5316\u95a2":35,"\u5317\u4eac":143,"\u5317\u534a\u7403":39,"\u533a\u5207\u3063":[106,117,125,127,192],"\u533a\u5207\u3089":37,"\u533a\u5207\u308a":[0,33,39,93,95,117,120,127,132,133,157,158,164,177,180,182,198,199,201],"\u533a\u5207\u308b":[35,117,166],"\u533a\u5225":[117,167,182,206],"\u5341\u4e00":193,"\u5341\u5206":[58,109,113,117,195,196],"\u5341\u5206\u6c17":[],"\u5343\u4e07":32,"\u534a\u5f84":144,"\u534a\u7121":[37,121],"\u534a\u89d2":[64,161,201],"\u5354\u529b":[],"\u5357\u534a":39,"\u5358\u306b":[40,116],"\u5358\u4e00":85,"\u5358\u4f4d":[0,35,37,66,76,78,143,144,153,158,180,182,192,193,201,204],"\u5358\u4f53":[0,134],"\u5358\u72ec":[47,134],"\u5358\u7d14":[11,144,206],"\u5358\u8a9e":[],"\u5360\u6709":60,"\u5371\u967a":[12,88,124,186],"\u5373\u5ea7":33,"\u539f\u56e0":[],"\u539f\u99c5":208,"\u53b3\u5bc6":[33,41,174],"\u53c2\u52a0":[2,3],"\u53c2\u7167\u5143":198,"\u53c2\u7167\u5148":40,"\u53c2\u8003":[],"\u53ca\u3073":134,"\u53cb\u4eba":200,"\u53cc\u65b9":10,"\u53cd\u6620":[0,11,12,181],"\u53cd\u8ee2":158,"\u53ce\u307e\u308a\u304d\u3089":33,"\u53ce\u96c6":[0,78],"\u53d6\u308a\u51fa\u3055":198,"\u53d6\u308a\u51fa\u3057":[57,64,201],"\u53d6\u308a\u51fa\u3059":[11,35,57,64,198],"\u53d6\u308a\u5f97\u308b":182,"\u53d6\u308a\u8fbc\u307e":12,"\u53d6\u308a\u8fbc\u307f":37,"\u53d6\u308a\u9664\u3044":63,"\u53d6\u308a\u9664\u304d":[11,148],"\u53d6\u308b":[158,192],"\u53d6\u308c\u308b":95,"\u53d6\u5f97":[],"\u53d7\u3051":[9,33,39,40,41,114,135,141,143,158,186,192,201,207],"\u53d7\u3051\u308b":[41,190],"\u53d7\u3051\u4ed8\u3051":[35,39,158],"\u53d7\u3051\u53d6\u3063":0,"\u53d7\u3051\u53d6\u308a":[11,135,201],"\u53d7\u4ed8":[40,207],"\u53e4\u3044":[],"\u53e4\u304f":41,"\u53ef\u5426":201,"\u53ef\u5909":[37,86,91,192],"\u53ef\u8aad":41,"\u53f3\u4e0a":34,"\u53f3\u4e0b":[34,145],"\u53f3\u8fba":[35,37],"\u5404\u51fa":117,"\u5404\u547d":134,"\u5404\u56fd":12,"\u5404\u7a2e":12,"\u5404\u7d22":201,"\u5404\u8981":75,"\u5404\u8a9e":82,"\u5408\u308f\u305b":[12,39,47,158],"\u5408\u7406":180,"\u5408\u81f4":[201,208],"\u5408\u8a08":[32,41,82,117,134,178,195,196],"\u5409\u5ca1":33,"\u5409\u7530":40,"\u540c\u3058":[],"\u540c\u3058\u4f8b":203,"\u540c\u3058\u5024":[135,201],"\u540c\u3058\u578b":75,"\u540c\u3058\u6570":[133,135,186],"\u540c\u3058\u6708":33,"\u540c\u3058\u91cd\u307f":151,"\u540c\u4e00":[40,47,64,73,77,85,134,172,186,193,203],"\u540c\u6642":[0,9,33,63,64,77,117,134,208],"\u540c\u671f":[12,134],"\u540c\u68b1":[17,35,39,41],"\u540c\u69d8":[11,12,64,134,163,192,198,208],"\u540c\u7b49":[134,193],"\u540c\u7fa9":166,"\u540d\u4e00":122,"\u540d\u524d":[],"\u540d\u79f0":33,"\u540d\u7b49":60,"\u540dn":122,"\u5411\u3044":[41,78,117,178],"\u5411\u3051":[],"\u5411\u4e0a":[37,135,156,186,190],"\u5426\u304b":[100,102,105,141],"\u5426\u5b9a":[],"\u542b\u307e":[6,11,12,24,33,39,41,78,84,86,89,94,95,100,103,109,110,113,115,116,117,121,122,124,141,149,151,153,157,158,166,177,180,186,193,201,204],"\u542b\u307e\u308c":[0,40,78,103,109,110,113,117,121,141,153,193],"\u542b\u307e\u308c\u308b":[0,11,12,117,133,146,147,195,198,201],"\u542b\u307f":[33,64,78,103],"\u542b\u3080":[9,11,33,39,40,41,75,84,85,100,117,120,124,132,157,158,193,201,203,204],"\u542b\u3080\u5024":[133,201],"\u542b\u3080\u5168\u3066":88,"\u542b\u3081":[12,117,141,157,166],"\u542b\u3081\u308b":[12,37,38,41,93,100,102,103,105,106,117,127,157,166,201],"\u542b\u3093":[11,41,78,117,153,157,158,175,176,180,198,204],"\u5438\u53ce":201,"\u5468\u4e0a":144,"\u5468\u8fba":[39,153],"\u547c\u3070":[33,40,50,61,63,65,117,158,182,201],"\u547c\u3073":[11,68,75,117,133,134,153,198],"\u547c\u3073\u5143":50,"\u547c\u3073\u51fa\u3055":[55,117],"\u547c\u3073\u51fa\u3057":[],"\u547c\u3073\u51fa\u3059":[101,126,142,144,145,150,152,156],"\u547c\u3076":[14,33,39,65,68,88,124,156],"\u547c\u3076\u524d":68,"\u547c\u3093":[41,68,117,193,199],"\u547c\u51fa":[47,58,60,63],"\u547d\u4ee4":[],"\u547d\u540d":[39,103],"\u548c\u5e83":40,"\u552f\u4e00":126,"\u554f\u3044\u5408\u308f":11,"\u554f\u984c":[12,17,33,34,35,36,37,39,40,41,46,50,82,85,134,135,157,158,180,196,201],"\u559c\u3073":[16,17],"\u56db\u3064":193,"\u56db\u5247":41,"\u56db\u6368":37,"\u56db\u89d2":163,"\u56db\u89d2\u5f62":[],"\u56de\u52d5":134,"\u56de\u547c":35,"\u56de\u6307\u5b9a":157,"\u56de\u6570":[39,181],"\u56de\u7279":134,"\u56de\u7e70\u308a":134,"\u56de\u9001\u308b":114,"\u56de\u907f":[],"\u56f0\u3063":10,"\u56f0\u96e3":[0,39],"\u56f2\u307e":[147,153],"\u56f2\u307f":[133,146,147,153],"\u56f2\u3080":[40,153,201],"\u56f2\u3093":158,"\u56fa\u5b9a":[41,60,64,86,121,192,201],"\u56fa\u5b9a\u9577":35,"\u56fa\u6709":[55,75],"\u56fd\u3054":199,"\u56fd\u540d":199,"\u56fd\u969b":17,"\u56fd\u969b\u5316":[],"\u570f\u5185":204,"\u5727\u7e2e":[],"\u5730\u56f3":0,"\u5730\u57df":0,"\u5730\u5f62":[143,144],"\u5730\u70b9":[143,208],"\u5730\u7cfb":143,"\u578b\u304b":182,"\u578b\u3068\u3057\u3066":182,"\u578b\u540d":[86,117],"\u578b\u5909":37,"\u578b\u60c5":39,"\u578b\u6307":39,"\u578b\u7528":53,"\u57cb\u3081\u8fbc\u307e":12,"\u57cb\u3081\u8fbc\u307f":[147,153],"\u57cb\u3081\u8fbc\u3080":134,"\u57f7\u7b46":[163,202,203],"\u57fa\u6570":158,"\u57fa\u672c":[],"\u57fa\u6e96":[0,12,198,201],"\u57fa\u76e4":50,"\u5831\u4ee5":127,"\u5831\u544a":[],"\u5834\u5408":[],"\u5834\u6240":[],"\u5883\u754c":[39,100,102,105,143],"\u5897\u3048":[75,115,127,167,203],"\u5897\u3048\u308b":[107,128],"\u5897\u3084":[6,7,33,65,75],"\u5897\u3084\u3059":[14,65,75,117,181],"\u5897\u5206":117,"\u5897\u52a0":[40,117],"\u5897\u5927":143,"\u58ca\u3057":131,"\u58ca\u3059":39,"\u58ca\u308c":[33,35,37,39,82,131],"\u58ca\u308c\u308b":[33,34,35,37,39,40,41],"\u5909\u3048":84,"\u5909\u3048\u308b":[84,117,180,195],"\u5909\u308a":41,"\u5909\u308f\u3063":[84,180],"\u5909\u308f\u308a":[33,81,82,114,180,193,208],"\u5909\u308f\u308b":[146,147,153,180,195],"\u5909\u5316":[0,33],"\u5909\u63db":[33,37,64,80,135,158,161,178,182,204],"\u5909\u6570":[12,14,29,33,36,37,38,39,40,41,61,69,117,158,166],"\u5909\u66f4":[],"\u5909\u66f4\u5f8c":[48,50,52,59,60,63],"\u5909\u66f4\u70b9":[],"\u5916\u90e8":9,"\u591a\u3044":[157,158,195],"\u591a\u304f":[37,94,103,117,121,135,153,157,158,167,180,185,190,195,198,201],"\u591a\u3059\u304e":35,"\u591a\u3059\u304e\u308b":117,"\u591a\u5f69":0,"\u591a\u69d8":0,"\u591a\u91cd":132,"\u591a\u9762":0,"\u5927\u304d":[39,75,82,121,135,178,181],"\u5927\u304d\u3044":[11,33,37,41,89,117,131,157,178,180,181],"\u5927\u304d\u304f":[35,77,93,144,198],"\u5927\u304d\u3055":178,"\u5927\u304d\u306a":[121,181,186],"\u5927\u4e08":19,"\u5927\u4e08\u592b":[10,28],"\u5927\u4e8b":[157,166],"\u5927\u5207":0,"\u5927\u5225":198,"\u5927\u62b5":135,"\u5927\u6587":[117,167],"\u5927\u6587\u5b57":[41,121,201],"\u5927\u898f\u6a21":0,"\u5927\u8cb4":39,"\u5927\u91cf":[11,41,121,178,200,201],"\u5927\u95a2":41,"\u592a\u90ce":200,"\u592b\u5fc5":206,"\u5931\u308f":39,"\u5931\u52b9":[81,135],"\u5931\u6557":[12,33,35,37,39,40,41,45,46,69,84,85,88,89,92,94,96,109,110,113,117,121,124,129,157,201],"\u5947\u6570":158,"\u5968\u6271\u3044":41,"\u597d\u304d":17,"\u59a5\u5f53":178,"\u59cb\u307e\u3063":[78,176],"\u59cb\u307e\u308a":12,"\u59cb\u307e\u308b":[41,63,73,85,117,134,157,158,166,174,176,180,186],"\u59cb\u3081":17,"\u59cb\u70b9":201,"\u5b09\u3057\u304f":10,"\u5b50\u5348\u7dda":143,"\u5b57\u5217":[37,41,121,157,182],"\u5b57\u5c0f":[117,167],"\u5b58\u5426":60,"\u5b58\u5728":[0,33,34,35,39,40,41,50,60,63,64,73,78,93,103,108,114,117,134,135,141,144,145,172,180,190,192,193,196,199,201,203,208],"\u5b66\u3073":[103,117,143,199],"\u5b66\u3093":204,"\u5b66\u7fd2":[],"\u5b89\u5168":[33,192],"\u5b89\u5b9a":[0,38,77,82],"\u5b89\u5fc3":10,"\u5b8c\u4e86":[12,17,117],"\u5b8c\u5168":[],"\u5b8c\u7d50":10,"\u5b9a\u5024":39,"\u5b9a\u5b50":167,"\u5b9a\u7fa9":[11,33,39,41,47,55,61,63,66,73,84,85,87,90,92,93,100,103,117,122,123,133,141,143,146,147,148,149,151,153,154,155,157,158,159,166,167,168,170,172,182,192,201,203],"\u5b9f\u4f53":50,"\u5b9f\u4f8b":[],"\u5b9f\u51e6":[11,61],"\u5b9f\u6570":182,"\u5b9f\u65bd":12,"\u5b9f\u73fe":[],"\u5b9f\u7528":41,"\u5b9f\u7a3c":132,"\u5b9f\u884c":[],"\u5b9f\u884c\u4f8b":[14,39,75,77,78,81,84,86,88,89,92,94,96,100,101,103,104,106,107,108,109,110,113,115,116,117,119,120,121,122,124,125,126,127,128,129,135,138,141,143,146,147,148,149,151,153,154,155,157,158,159,160,161,167,168,170,174,175,177,179,180,192,198,199,200,201,203,204,205,206,207,208],"\u5b9f\u88c5":[17,33,37,39,41,65,84,103,115,116,117,135,136,143,172,185],"\u5b9f\u969b":[32,40,65,100,102,103,105,117,181,195,200,203],"\u5b9f\u9a13":[],"\u5bb9\u91cf":[33,82],"\u5bc6\u9375":[],"\u5bfe\u3057":[157,158],"\u5bfe\u51e6":41,"\u5bfe\u5fdc":[],"\u5bfe\u6bd4":89,"\u5bfe\u7167":151,"\u5bfe\u7b56":[],"\u5bfe\u8a71":[192,201],"\u5bfe\u8c61":[0,9,11,12,14,17,28,33,37,38,41,47,50,51,53,57,60,62,63,64,71,77,83,85,87,90,91,92,93,94,95,103,108,114,117,120,121,123,127,131,132,146,147,149,151,153,155,157,186,193,195,200,201,203,204],"\u5bfe\u8c61column":47,"\u5bfe\u8c61ctx":50,"\u5bfe\u8c61cursor":[57,64],"\u5bfe\u8c61id":58,"\u5bfe\u8c61obj":58,"\u5bfe\u8c61object":[47,51,55,58,60,61,67],"\u5bfe\u8c61table":[47,60,63,64],"\u5bfe\u8c61table1":63,"\u5bfe\u8c61table2":63,"\u5c02\u7528":[1,12,17,192,205],"\u5c06\u6765":[40,75,100,106,107,115,116,128,143,172,186,192],"\u5c0e\u5165":[14,33,41,77],"\u5c0f\u3055":33,"\u5c0f\u3055\u3044":[11,36,64,117,121,144,157,178,180],"\u5c0f\u3055\u304f":[33,41,143,144,159,167,178,181,186],"\u5c0f\u306a\u308a":[],"\u5c0f\u5024":[100,102,103,105],"\u5c0f\u6570":[],"\u5c0f\u6570\u70b9":198,"\u5c0f\u6587\u5b57":[64,121,127,161,201],"\u5c0f\u897f":40,"\u5c11\u304f":196,"\u5c11\u3057":28,"\u5c11\u3057\u9055\u3044":117,"\u5c11\u306a\u3044":[41,117,156,157,158,159,166],"\u5c11\u306a\u304f":[0,10,33,89,153,157,158,159,181],"\u5c11\u306a\u3051\u308c":121,"\u5c1a\u4e5f":40,"\u5c3a\u5ea6":0,"\u5c55\u958b":[],"\u5c55\u958b\u5f8c":117,"\u5c55\u958b\u7528":37,"\u5c5e\u3057":[71,182,199],"\u5c5e\u3059\u308b":[47,60,64,122],"\u5c5e\u6027":[36,85,106,107,122,127,128,148],"\u5c65\u6b74":12,"\u5c71\u672c":41,"\u5ca9\u4e95":[39,40],"\u5cf6\u7530":39,"\u5d8b\u7530":39,"\u5de6\u4e0a":[34,145],"\u5de6\u4e0b":34,"\u5de6\u53f3":201,"\u5dee\u3057":12,"\u5dee\u5206":134,"\u5dee\u96c6\u5408":158,"\u5e02\u5185":163,"\u5e03\u6559":3,"\u5e38\u306b":33,"\u5e73\u5747":[41,117],"\u5e73\u884c":12,"\u5e74\u9f62":[0,121],"\u5e83\u304f":[12,167],"\u5ea6\u3068":37,"\u5ea6\u5206":182,"\u5ea6\u5408\u3044":195,"\u5ea6\u6570":[37,158,198,208],"\u5ea6\u6d6e":182,"\u5ea6\u8868":35,"\u5ea6y":182,"\u5ea7\u6a19":[37,143,144,145,158,163,204],"\u5ea7\u6a19\u5024":[],"\u5ec3\u6b62":77,"\u5f0f\u5168":[157,158],"\u5f0f\u8868":53,"\u5f0f\u96c6\u5408":167,"\u5f15\u3044":158,"\u5f15\u304d\u51fa\u3059":0,"\u5f15\u304d\u7d9a\u304d":40,"\u5f15\u304d\u8d77\u3053\u3059":[39,40],"\u5f15\u304d\u8d77\u3059":[39,40],"\u5f15\u6570":[],"\u5f15\u7528":[40,133],"\u5f15\u8a9e":201,"\u5f31\u70b9":0,"\u5f35\u3063":[33,40,117],"\u5f35\u3089":[33,39,40,47,94,198],"\u5f35\u308b":[157,158],"\u5f35\u308c\u308b":40,"\u5f37\u5236":[33,34,39,41,60],"\u5f37\u529b":167,"\u5f37\u5316":[35,37,41],"\u5f53\u3066":[50,114,122,127,178],"\u5f53\u3066\u308b":[114,198],"\u5f53\u8a72":[60,77],"\u5f62\u5f0f":[],"\u5f62\u614b":[0,28,158,180],"\u5f62\u72b6":163,"\u5f71\u97ff":[12,33,39,40,41],"\u5f79\u5272":[151,201],"\u5f79\u7acb\u3061":40,"\u5f85\u3061\u53d7\u3051\u308b":[192,205],"\u5f8c\u304b\u3089":93,"\u5f8c\u4e8c":77,"\u5f8c\u65b9":[],"\u5f8c\u65b9\u4e00\u81f4":[],"\u5f8c\u8005":[161,166,208],"\u5f8c\u8ff0":[11,12,64,117,154,167,172],"\u5f93\u3046":35,"\u5f93\u3063":[62,63,64,117,136,186],"\u5f93\u6765":41,"\u5f97\u3089\u308c":[126,149],"\u5f97\u308b":135,"\u5f97\u9069":84,"\u5fa9\u53f7":12,"\u5fa9\u65e7":[33,38,51,131],"\u5fc3\u304c":14,"\u5fc3\u914d":23,"\u5fc5\u305a":[63,71,77,102,117,121,192],"\u5fc5\u8981":[],"\u5fc5\u9808":[],"\u5fd8\u308c":[37,75],"\u5fdc\u3058":[0,58,134,167],"\u5fdc\u7528":0,"\u5fdc\u7b54":[0,40],"\u601d\u3044":17,"\u601d\u3044\u51fa\u3057":117,"\u601d\u3046":[199,203],"\u601d\u3063":16,"\u6027\u5225":0,"\u6027\u80fd":[],"\u6069\u6075":190,"\u60aa\u610f":158,"\u60c5\u5831\u540d":122,"\u60f3\u5b9a":[82,93,119,200],"\u610f\u5473":[11,28,33,40,53,75,86,94,114,117,120,133,134,157,158,166,174,180,181,199,201,208],"\u610f\u56f3":[39,40,41,151,154,157,203],"\u610f\u8b58":121,"\u611f\u3058":10,"\u614e\u91cd":14,"\u6163\u308c":199,"\u6163\u7fd2":39,"\u6210\u308a":[117,157,192],"\u6210\u308a\u7acb\u3063":11,"\u6210\u529f":[],"\u6210\u679c":[],"\u623b\u3057":89,"\u623b\u3063":135,"\u623b\u308a":[39,60],"\u623b\u308a\u5024":[],"\u6240\u5b9a":[121,179,193,195],"\u6240\u5c5e":88,"\u624b\u52d5":135,"\u624b\u6bb5":[11,53],"\u624b\u7d9a\u304d":[55,61],"\u624b\u9593":10,"\u624b\u9806":[],"\u6253\u3061":100,"\u6253\u3061\u5207\u308a":40,"\u6253\u3063":12,"\u6253\u3064":12,"\u6253\u3064\u524d":12,"\u6271\u3044":[41,77,174,180,193,198],"\u6271\u3046":[0,2,38,40,80,100,102,105,158,181,195,196],"\u6271\u3048":[50,202],"\u6271\u3048\u308b":[40,41,196],"\u6271\u3063":[34,40,204],"\u6271\u308f":[33,39,40,41,50,117,127,134,157,161,163,195,198],"\u627f\u8a8d":41,"\u628a\u63e1":[10,94],"\u6291\u3048":195,"\u6291\u5236":[39,40,41],"\u6295\u5165":[34,100,195],"\u6295\u7a3f\u5834\u6240":204,"\u629c\u304d\u51fa\u3059":0,"\u629c\u3051":[33,37,40,41],"\u629c\u3051\u308b":201,"\u62bc\u3057":201,"\u62bc\u3059":[17,201],"\u62bd\u51fa":[],"\u62c5\u5f53":12,"\u62c5\u5f53\u8005":12,"\u62e1\u5927":10,"\u62e1\u5f35":[],"\u62e1\u5f35\u578b":198,"\u62e1\u5f35\u5b50":[35,109,110,113,134,164],"\u62ec\u5f27":95,"\u6301\u3061":[11,71,86,117,127,133,135,167],"\u6301\u3063":[0,10,39,75,86,103,106,107,117,127,128,157,158,161,175],"\u6301\u3064":[0,9,37,63,73,86,95,103,107,117,128,143,154,158,161,163,175,198,199,200,201],"\u6301\u3064\u3059\u3079":117,"\u6301\u3066":[86,179],"\u6307\u3057":198,"\u6307\u3059\u5024":64,"\u6307\u5b9a":[],"\u6307\u6570":158,"\u6307\u6a19":60,"\u6307\u793a":[55,174,201,205],"\u6307\u91dd":[],"\u6319\u304c\u3063":180,"\u6319\u52d5":[],"\u632f\u821e":143,"\u632f\u821e\u3044":[39,40,41,141,151],"\u633f\u5165":[12,39,55,133,153,201],"\u6368\u3066":37,"\u639b\u3051":158,"\u63a1\u7528":[0,126,192,195],"\u63a2\u3057":[0,117,134,180],"\u63a2\u3059":[180,203],"\u63a2\u7d22":0,"\u63a5\u7d9a":[],"\u63a5\u7d9a\u5148":132,"\u63a5\u8fd1":11,"\u63a5\u982d":[37,158,178],"\u63a8\u5968":[23,33,39,41,77,78,117,181,205],"\u63a8\u5b9a":33,"\u63a8\u79fb":77,"\u63a8\u9032":40,"\u63d0\u4f9b":[],"\u63d0\u6848":[],"\u63d0\u6848\u7528":138,"\u63db\u3048":[33,60,64,167,207],"\u63db\u3048\u308b":[12,71],"\u63db\u6642":37,"\u63fa\u308c":207,"\u642d\u8f09":0,"\u643a\u5e2f":0,"\u64a4\u53bb":37,"\u64a4\u5ec3":[35,41,83,113,133],"\u64cd\u4f5c":[],"\u64ec\u4f3c":[],"\u652f\u63f4":176,"\u6539\u540d":[37,39],"\u6539\u5584":[33,34,37,39,40,41],"\u6539\u884c":[33,37,38,133],"\u6570\u3048":199,"\u6570\u3048\u308b":[117,199],"\u6570\u5024":[],"\u6570\u5b57":[41,103,117,121,134,167,175,180,195],"\u6570\u70b9":[117,182],"\u6570\u73e0":154,"\u6574\u3063":14,"\u6574\u5217":[0,201],"\u6574\u5408":[34,60],"\u6574\u5f62":[33,201],"\u6574\u6570":[],"\u6574\u7406":[39,40],"\u6587\u5b57":[],"\u6587\u5b57\u5217":[],"\u6587\u5b57\u6570":[153,158],"\u6587\u5b57\u7a2e":167,"\u6587\u66f8":[],"\u6587\u66f8\u5185":179,"\u6587\u6cd5":[],"\u6587\u8108":154,"\u65ad\u7247":153,"\u65b0\u3057\u3044":[],"\u65b0\u3057\u304f":[10,41,77,101,117,121,156,159,201],"\u65b0\u305f":[11,47,51,55,63],"\u65b0\u5bbf":208,"\u65b0\u5bbf\u99c5":208,"\u65b0\u65e7":33,"\u65b0\u8a9e":180,"\u65b9\u5411":64,"\u65b9\u5f0f":[0,201,203],"\u65b9\u5f62":[143,144],"\u65b9\u6cd5":[],"\u65e2\u5b58":[0,1,12,33,39,41,51,63,99,102,117,131,134,172,190,192,198,201],"\u65e2\u5b9a":39,"\u65e2\u5b9a\u5024":190,"\u65e2\u77e5":100,"\u65e5\u3005":10,"\u65e5\u3054\u3068":100,"\u65e5\u4ed8":[0,12,143],"\u65e5\u6642":[],"\u65e5\u672c":[12,41,144,145,157,158,174,180,182,208],"\u65e5\u672c\u4eba":174,"\u65e5\u672c\u6e2c":143,"\u65e5\u672c\u8a9e":[0,17,19,39,157,158,174,180,195],"\u65e5\u6b21":33,"\u6607\u964d":64,"\u6607\u9806":[60,63,64,104,117,199,201,208],"\u660e\u78ba":41,"\u6642\u306b":37,"\u6642\u4ee3":0,"\u6642\u4ee5\u5916":35,"\u6642\u523b":[51,78,119,134,150,175,204],"\u6642\u70b9":[12,39,45,46,50,52,77],"\u6642\u9593":[],"\u666e\u53ca":0,"\u666e\u901a":[10,158],"\u6697\u53f7":12,"\u66f8\u3044":[33,41,157,158,167,204],"\u66f8\u304b":[39,172,204],"\u66f8\u304d":[],"\u66f8\u304d\u51fa\u3057":94,"\u66f8\u304d\u51fa\u3059":94,"\u66f8\u304d\u5f8c":193,"\u66f8\u304d\u63db\u3048":[12,21],"\u66f8\u304d\u8fbc\u307e":99,"\u66f8\u304d\u8fbc\u307f":[28,33],"\u66f8\u304d\u8fbc\u3080":[33,134],"\u66f8\u304d\u8fbc\u3081\u308b":41,"\u66f8\u304f":[41,157,203],"\u66f8\u3051\u308b":[39,40,41],"\u66f8\u5f0f":[],"\u66ff\u3048":[],"\u66ff\u3048\u308b":201,"\u66ff\u308f\u308b":33,"\u6700\u3082":[50,82,117],"\u6700\u4e2d":0,"\u6700\u521d":[10,33,37,41,50,78,114,117,121,138,141,146,147,153,157,158,166,167,180,190,198,201,203],"\u6700\u5927":[],"\u6700\u5927\u5024":[39,41,100,102,103,105,117],"\u6700\u5c0f":[24,25,26,30,33,117,141,190],"\u6700\u5c0f\u5024":[41,100,102,103,105,117,158],"\u6700\u5c0f\u9650":135,"\u6700\u5f8c":[12,33,35,39,50,127,134,135,158,167,180,195,198],"\u6700\u65b0":[2,6,7,8,12,33,37,81],"\u6700\u7d42":[51,75,117],"\u6700\u7d42\u66f4":51,"\u6700\u9069":135,"\u6700\u9577":[37,134,158],"\u6708\u6b21":33,"\u6709\u3057":86,"\u6709\u529b":120,"\u6709\u52b9":[0,6,7,8,12,24,28,30,33,37,38,40,41,47,51,60,63,85,86,95,103,117,121,127,134,135,153,155,157,167,172,198,205],"\u6709\u7121":[146,198],"\u6709\u7528":[33,41,78,86,135,178,186,201],"\u6709\u76ca":0,"\u6709\u9650":[],"\u671b\u307e\u3057\u3044":[0,10,12],"\u671f\u5316":[39,50],"\u671f\u5f85":[0,167,180,198],"\u6728\u4e0a":64,"\u672a\u4f7f":41,"\u672a\u4f7f\u7528":192,"\u672a\u521d":39,"\u672a\u5b9a":198,"\u672a\u5b9a\u7fa9":41,"\u672a\u5b9f\u88c5":103,"\u672a\u5bfe":39,"\u672a\u6e80":[64,157],"\u672a\u77e5":38,"\u672a\u8a2d":39,"\u672a\u958b\u653e":35,"\u672b\u5c3e":[55,60,64,100,167],"\u672b\u6c38":33,"\u672c\u4f53":3,"\u672c\u5f53":[174,207],"\u672c\u6587":[148,203],"\u672c\u756a":[12,33,102],"\u672c\u8a9e":180,"\u672c\u8cea":134,"\u6751\u4e0a":[33,40,41],"\u6761\u4ef6":[],"\u6761\u4ef6\u5f0f":[],"\u6771\u4eac":[143,180,193,195,208],"\u6771\u4eac\u90fd":[180,193,195],"\u6790\u5668":[0,180],"\u6790\u7cfb":158,"\u679c\u305f":201,"\u67af\u308c":[1,190],"\u67d4\u8edf":[0,151,156],"\u6817\u5c71":[33,41],"\u682a\u5f0f":[33,41],"\u683c\u7d0d":[],"\u6848\u5185":[10,12,33],"\u68ee\u7530":200,"\u691c\u67fb":60,"\u691c\u7d22\u4f8b":[],"\u691c\u7d22id":63,"\u691c\u7d22key":63,"\u691c\u8a0e":[190,195],"\u691c\u8a3c":[41,132],"\u6955\u5186":[143,144],"\u6975\u4ed8":[143,144],"\u697d\u3057":[193,195],"\u697d\u3057\u3044":[193,195],"\u6982\u5ff5":77,"\u69cb\u3044":[17,147,153,174],"\u69cb\u6210":[11,12,24,25,26,30,41,190,201],"\u69cb\u6587":[],"\u69cb\u7bc9":[],"\u69cb\u9020":[0,11,50,63,78,178,200],"\u69cb\u9020\u4f53":[41,50,57,61],"\u69d8\u3005":[],"\u6a19\u6e96":[33,34,38,41,77,82,83,85,87,90,91,93,95,97,98,99,111,118,119,122,123,132,133,135,136,192,201],"\u6a19\u8a18":41,"\u6a29\u8868":41,"\u6a29\u9650":[28,33,40,205],"\u6a2a\u5c71":[40,41],"\u6a5f\u68b0":41,"\u6a5f\u80fd":[],"\u6b20\u70b9":0,"\u6b20\u843d":40,"\u6b21\u56de":[12,77],"\u6b21\u671f":12,"\u6b21\u90ce":200,"\u6b32\u3057\u3044":172,"\u6b53\u8fce":3,"\u6b62\u3081":[33,41,65],"\u6b63\u3057\u3044":[33,157,166,175,176],"\u6b63\u3057\u304f":[33,39,40,41,157,174],"\u6b63\u5e38":[12,33,103,134],"\u6b63\u5f0f":41,"\u6b63\u78ba":[101,119,198,201],"\u6b63\u898f":[],"\u6b63\u898f\u5316":[39,106,153],"\u6b66\u8005":33,"\u6b8a\u547d":134,"\u6b8b\u3057":[],"\u6b8b\u3063":[35,40],"\u6b8b\u308a":[77,117,121,125,166],"\u6b8b\u308b":37,"\u6b8b\u5ff5":198,"\u6bb5\u843d":[47,85,86],"\u6bb5\u968e":181,"\u6bd4\u3079":[41,159],"\u6bd4\u8f03":[],"\u6c17\u306b":[17,60,86,100],"\u6c17\u8efd":[10,41],"\u6c38\u7d9a":[],"\u6c42\u307e\u308a":0,"\u6c42\u3081":[0,142],"\u6c42\u3081\u308b":[0,143,144,199],"\u6c4e\u7528":[133,134,135],"\u6c7a\u307e\u308a":166,"\u6c7a\u307e\u308b":201,"\u6c7a\u3081":[84,100,117,121],"\u6c7a\u3081\u308b":[11,117],"\u6c7a\u5b9a":117,"\u6cbf\u3046":41,"\u6ce8\u610f":[12,37,40,63,75,94,114,117,121,134,135,148,155,157,158,181,186,195,198,199,201,206],"\u6ce8\u76ee":[117,199],"\u6ce8\u8a18":40,"\u6d0b\u5fd7":41,"\u6d0b\u723e":37,"\u6d3b\u304b\u3059":117,"\u6d3b\u7528":190,"\u6d41\u3057":12,"\u6d41\u308c":[],"\u6d41\u91cf":186,"\u6d45\u898b":40,"\u6d69\u4e8c":39,"\u6d6e\u52d5":[],"\u6d88\u3048":178,"\u6d88\u305b":135,"\u6d88\u53bb":40,"\u6d88\u8cbb":159,"\u6df1\u523b":[39,41,195],"\u6df7\u3056\u3063":180,"\u6df7\u305c":[120,198],"\u6df7\u305c\u308b":75,"\u6df7\u5728":[33,136],"\u6dfb\u4ed8":39,"\u6e08\u307f":[10,12,24,25,26,30,33,37,39,40,47,85,95,104,127,166,174,175,176,182,190],"\u6e08\u3080":33,"\u6e1b\u3063":33,"\u6e1b\u3089":[39,65,175,178,207],"\u6e1b\u5c11\u5f8c":65,"\u6e1b\u7b97":[],"\u6e21\u3055":[11,39,40,61,65,143],"\u6e21\u3057":[6,7,8,11,33,41,95,114,126,131,157,201,205],"\u6e21\u3059":[33,38,158,201],"\u6e2c\u4f4d":0,"\u6e2c\u5730":[143,144,145,182,198,208],"\u6e2c\u5730\u7cfb":182,"\u6e2c\u5b9a":134,"\u6e2c\u7528":34,"\u6e80\u3055":40,"\u6e80\u3059":[33,40],"\u6e80\u305f":[11,154,167,208],"\u6e96\u5099":[],"\u6e96\u62e0":[40,135],"\u6f0f\u308c":[0,12,39,156,207],"\u6f14\u7b97":[28,35,39,40,41,63,156,158],"\u6f14\u7b97\u5b50":[],"\u6f22\u5b57":180,"\u6fc1\u70b9":161,"\u7027\u5185":40,"\u70b9\u4ee5\u4e0b":198,"\u70b9\u6570":[],"\u70b9\u9593":163,"\u7121\u3057":[94,101,167],"\u7121\u52b9":[6,7,8,28,33,38,39,40,52,63,64,117,133,135,157,174],"\u7121\u540d":[60,63],"\u7121\u8996":[33,35,37,39,40,41,63,64,92,93,106,114,117,127,133,157,166,178,180,195],"\u7121\u9650":[35,39,41],"\u7121\u99c4":0,"\u7279\u306b":[11,12],"\u7279\u5225":[28,45,53,80,127,157,167,174],"\u7279\u5316":[17,158],"\u7279\u5b9a":[],"\u7279\u6027":178,"\u7279\u6709":[],"\u7279\u6b8a":[],"\u72b6\u614b":[0,10,12,24,25,26,30,33,35,39,41,50,82,119,132,133,174,195,201],"\u72b6\u6cc1":[0,55,117,158,195],"\u72ec\u7acb":101,"\u72ec\u81ea":[],"\u72ed\u3081\u308b":94,"\u7389\u91ce":41,"\u73fe\u308c":127,"\u73fe\u308c\u308b":195,"\u73fe\u4ee3":0,"\u73fe\u5728":[0,12,33,46,50,51,57,60,61,81,84,88,99,101,121,124,132,134,150,163,201,202,204],"\u73fe\u5728\u5730":204,"\u73fe\u5b9f":199,"\u73fe\u72b6":77,"\u73fe\u983b":41,"\u7403\u9762":[143,144],"\u7406\u7531":[],"\u7406\u89e3":[117,201],"\u7406\u95a2":61,"\u74b0\u5883":[],"\u751f\u3058":[83,87,90,97,98,99,123],"\u751f\u6210":[],"\u7528\u3044":[],"\u7528\u3044\u308b":[0,60,192,198,200,201,202,208],"\u7528\u5909":41,"\u7528\u610f":[11,12,28,60,117,134,143,174,175,176,177,180,181],"\u7528\u79d8":[],"\u7528\u8a9e\u96c6":[],"\u7528\u9014":[0,23,24,25,26,30,31,40,41,75,78,117,167,172,178,190],"\u7530\u6cbc":41,"\u7530\u8fba":40,"\u7531\u6765":156,"\u753b\u9762":[12,34,41],"\u7551\u30b1":[33,41],"\u7551\u30f6":41,"\u756a\u53f7":[12,40,41,47,73,132,133,134,167,186,190,192,205],"\u756a\u76ee":[40,63,64,86,102,106,117,127,157,158,167,198,201],"\u7570\u306a\u3063":[33,64],"\u7570\u306a\u308a":[41,157],"\u7570\u306a\u308b":[],"\u7570\u5e38":[82,134],"\u7591\u4f3c":[39,40,41,73,95,152],"\u7591\u554f":203,"\u767a\u63ee":0,"\u767a\u751f":[0,12,28,33,34,39,40,41,50,60,63,78,85,121,195],"\u767a\u884c":192,"\u767b\u9332":[],"\u7686\u5ddd":41,"\u76ee\u304f\u3089\u3044":121,"\u76ee\u4ee5\u964d":117,"\u76ee\u5b89":12,"\u76ee\u7684":[28,40,100,127],"\u76ee\u8996":78,"\u76f4\u3057":181,"\u76f4\u4e0b":37,"\u76f4\u524d":55,"\u76f4\u5f8c":50,"\u76f4\u611f":206,"\u76f4\u63a5":[93,204],"\u76f8\u5bfe":[12,37,117],"\u76f8\u5bfe\u30d1\u30b9":41,"\u76f8\u5f53":[78,199,201,208],"\u76f8\u5fdc":63,"\u76f8\u624b":10,"\u7701\u7565":[],"\u771f\u306a\u3089":158,"\u771f\u507d":[40,157,158,182,198],"\u771f\u507d\u5024":[],"\u77e5\u3089":180,"\u77e5\u308b":199,"\u77e5\u308c":[10,100,106,115,116,203],"\u77e5\u8b58":134,"\u77e9\u5f62":[0,145,208],"\u77ed\u3044":[33,35,204],"\u77ed\u304f":[0,159],"\u77ed\u6642\u9593":0,"\u77ed\u7e2e":[6,7,33],"\u7834\u58ca":63,"\u7834\u68c4":[50,61],"\u78ba\u4fdd":[50,53,58,196],"\u78ba\u5b9a":120,"\u78ba\u5b9f":175,"\u78ba\u7387":120,"\u78ba\u8a8d":[],"\u78ef\u90e8":40,"\u793a\u3055":122,"\u793a\u3057":[12,44,80,84,100,106,119,143,149,163,168,180,189,192,195,199,201,203,205],"\u793a\u3059":[78,80,92,95,103,117,122,141,143,144,145,146,147,148,149,151,153,154,155,157,158,168,170,186,198,206],"\u79cb\u8449":208,"\u79d2\u3088\u308a":36,"\u79d2\u5358":[182,198],"\u79d2\u5f62":182,"\u79d2\u60c5":37,"\u79d2\u6570":[78,119,158,182,198,204],"\u79d2\u8868":[158,195,198,208],"\u79d2\u9593":37,"\u79d8\u5bc6":12,"\u79fb\u52d5":[12,16,31,37,39,84,99],"\u79fb\u884c":[37,77],"\u7a0b\u5ea6":[37,40,201],"\u7a2e\u5225":106,"\u7a2e\u985e":[],"\u7a32\u7530":40,"\u7a3c\u52d5":119,"\u7a4d\u307f\u91cd\u306a\u3063":40,"\u7a4d\u7528":117,"\u7a4d\u7b97":[11,117],"\u7a7a\u304d":[82,196],"\u7a7a\u6587":[41,157,182],"\u7a7a\u767d":[0,33,95,106,127,133,157,177,180,195,201],"\u7a81\u7136":40,"\u7acb\u3061":78,"\u7acb\u3061\u4e0a\u304c\u3063":134,"\u7acb\u3061\u4e0a\u3052":134,"\u7acb\u3064\u304b":180,"\u7acb\u5834":3,"\u7aef\u672b":0,"\u7b26\u53f7":[],"\u7b2c\u4e00":201,"\u7b2c\u4e8c":143,"\u7b49\u3057\u3044":[11,60,117,157,158],"\u7b49\u3057\u304f":[11,157,158],"\u7b49\u4fa1":[],"\u7b49\u5024":35,"\u7b87\u6240":[12,40,78,153],"\u7b97\u51fa":[39,41],"\u7b97\u8853":[],"\u7ba1\u7406":[],"\u7bc4\u56f2":[],"\u7bc4\u56f2\u5916":41,"\u7be0\u7530":[33,41],"\u7c21\u5358":[],"\u7c21\u6613":[41,143,190],"\u7c21\u7565":[40,149],"\u7cfb\u5ea7":[144,145],"\u7d14\u7c8b":180,"\u7d1b\u3089\u308f\u3057\u3044":167,"\u7d20\u65b9":0,"\u7d20\u6734":199,"\u7d20\u89e3":[0,28,158,180],"\u7d22\u6642":35,"\u7d22\u7528":[],"\u7d30\u5206":198,"\u7d39\u4ecb":[3,12,41,103,117,204],"\u7d42\u3048":12,"\u7d42\u308f\u3063":68,"\u7d42\u308f\u308b":[157,158,159],"\u7d42\u4e86":[],"\u7d42\u4e86\u30bf\u30b0":146,"\u7d42\u7aef":[39,50,51,53],"\u7d44\u307f\u5408\u308f":[0,11,117,121,141],"\u7d44\u307f\u5408\u308f\u305b":[0,11,12,41,85,180,195,201],"\u7d44\u307f\u8fbc\u307f":[],"\u7d44\u307f\u8fbc\u3080":[0,11,135],"\u7d44\u307f\u8fbc\u3093":[0,41],"\u7d44\u5408":151,"\u7d44\u8fbc":[82,83,85,87,90,91,93,97,98,99,111,118,119,122,123,142,144,145,150,152,182],"\u7d44\u8fbc\u578b":[],"\u7d4c\u7531":[12,35,39,41,82,83,85,87,90,91,93,97,98,99,111,118,119,122,123,134],"\u7d4c\u7def":[182,198,208],"\u7d4c\u7def\u5ea6":[],"\u7d4c\u904e":[37,45,60,77,78,119,158,182,198,204],"\u7d50\u3073\u3064\u3044":9,"\u7d50\u3073\u3064\u304f":9,"\u7d50\u5408":[11,156,157],"\u7d50\u5408\u5f0f":[],"\u7d50\u57ce":41,"\u7d50\u679c":[],"\u7d5e\u308a\u8fbc\u307f":[0,201],"\u7d5e\u308a\u8fbc\u3080":[41,117,176],"\u7d5e\u308a\u8fbc\u3093":[0,40],"\u7d5e\u8fbc":[],"\u7d71\u5408":[0,39,40],"\u7d76\u5bfe":[109,110,113],"\u7d99\u627f":40,"\u7d99\u7d9a":[21,39,133],"\u7d9a\u3044":195,"\u7d9a\u304d":95,"\u7d9a\u3051":134,"\u7d9a\u3051\u308b":180,"\u7dad\u6301":[0,186],"\u7db2\u7f85":135,"\u7dcf\u91cf":181,"\u7de8\u96c6":[],"\u7de9\u3084\u304b":33,"\u7de9\u548c":181,"\u7e26\u68d2":121,"\u7e4b\u3052":41,"\u7e4b\u3052\u308b":10,"\u7e70\u308a\u8fd4\u3057":[17,134,158],"\u7e70\u308a\u8fd4\u3057\u6570":134,"\u7e70\u308a\u8fd4\u3059":35,"\u7f6e\u3044":[12,41],"\u7f6e\u304b":[28,135,136,166],"\u7f6e\u304d":[12,33,35,60,64,167,207],"\u7f6e\u304d\u63db\u3048":[17,41,133,157,172],"\u7f6e\u304f":[28,33,181],"\u7f6e\u304f\u4f8b":28,"\u7f6e\u63db":[],"\u7f72\u540d":[],"\u7fa9\u8a9e":166,"\u7ffb\u8a33":[],"\u8003\u3048":[0,10,117,157,158,181,186,199,201],"\u8003\u3048\u65b9":41,"\u8003\u616e":[195,207],"\u80a5\u5927":41,"\u811a\u6ce8":[87,143,144,145,182,201],"\u81a8\u5927":0,"\u81ea\u4f53":[41,157],"\u81ea\u5206":[10,17,23,100,134,135],"\u81ea\u52d5":[12,17,33,37,39,41,47,63,73,94,109,110,113,131,134,135,157,158,178,200,201,206],"\u81ea\u52d5\u5207\u308a":41,"\u81ea\u52d5\u7684":134,"\u81ea\u5df1":204,"\u81ea\u5df1\u7d39":204,"\u81ea\u7531":[0,11,73,192],"\u81ea\u8eab":[37,39,127,133,166],"\u81f3\u308b":198,"\u81f4\u547d":39,"\u8208\u5473":[0,33,167],"\u826f\u3044":[10,203],"\u826f\u3044\u4f8b":10,"\u826f\u304f":[33,203],"\u826f\u4e8c":41,"\u82b1\u5b50":200,"\u82e6\u624b":0,"\u82f1\u8a9e":[12,17,19,37,41,180],"\u840e\u7e2e":10,"\u843d\u3061":[35,40],"\u843d\u3061\u308b":[35,37,40],"\u8457\u4f5c":41,"\u884c\u3044":[11,12,33,60,63,64,132,133,134,151,193,195,200,201,203,204],"\u884c\u3046":[10,12,14,35,39,41,64,121,132,143,151,179,190,193,200,203,204,206,208],"\u884c\u3048":[14,41,151,157,201],"\u884c\u3048\u308b":[39,200],"\u884c\u3063":[12,14,41,199,208],"\u884c\u306a\u308f":39,"\u884c\u308f":[117,132,134,200],"\u884c\u6307\u5411":0,"\u884c\u6570":37,"\u884c\u672b":167,"\u884c\u756a":[37,78],"\u884c\u76ee":[12,78,134],"\u884c\u982d":167,"\u8868\u3057":[11,73,77,78,80,117,163,167,182,201],"\u8868\u3059":[11,85,127,143,152,163,167,198,200],"\u8868\u3059\u578b":182,"\u8868\u308f":60,"\u8868\u73fe":[],"\u8868\u793a":[],"\u8868\u8a08":166,"\u8868\u8a18":[12,17,37,39,40,75,143,158,182,198,207,208],"\u88d5\u4e5f":41,"\u88dc\u3046":0,"\u88dc\u5b8c":[],"\u88dc\u5b8c\u8a9e":174,"\u88dc\u6b63":[],"\u88dc\u8db3":135,"\u8907\u6570":[],"\u8907\u96d1":[11,33,39,40,117,158,167],"\u897f\u66a6":158,"\u8981\u6c42":[10,40,154,201],"\u8981\u7d20":[11,39,40,63,75,78,80,86,95,134,153,201],"\u898b\u3048\u308b":[6,7],"\u898b\u305b":172,"\u898b\u3064":[35,39,120],"\u898b\u3064\u304b\u3063":[117,176,180],"\u898b\u3064\u304b\u3089":63,"\u898b\u3064\u304b\u308a":[117,180],"\u898b\u3064\u304b\u308b":39,"\u898b\u3064\u304b\u308c":10,"\u898b\u3064\u3051":[10,34,39,117,174,180],"\u898b\u3064\u3051\u308b":[88,117,124,135,161,174,180],"\u898b\u3066":[78,84,103,117,135],"\u898b\u306a\u3057":64,"\u898b\u308b":[80,84,117],"\u898b\u4ed8":40,"\u898b\u4ed8\u3051":40,"\u898b\u76f4\u3057":41,"\u898b\u7a4d":33,"\u898b\u7a4d\u308b":196,"\u898b\u8fbc\u3081":41,"\u898f\u5247":[39,103],"\u898f\u683c":64,"\u8996\u899a":0,"\u89a7\u4e0b":14,"\u89aa\u5207":35,"\u89b3\u70b9":[41,149,158,196],"\u89e3\u50cf":35,"\u89e3\u653e":[41,46,50,57,60,64,68,89,96,119],"\u89e3\u6790":[],"\u89e3\u6c7a":[10,33,37,39,82,172,180,196],"\u89e3\u6c7a\u7b56":10,"\u89e3\u6d88":[33,34,40,60,75,91],"\u89e3\u91c8":[11,35,93,157],"\u89e3\u9664":[34,60,83,109,110,133],"\u89e6\u308b":33,"\u89e6\u308c":201,"\u89e6\u308c\u308b":180,"\u8a00\u3044":[33,71,154],"\u8a00\u3046":[75,101,174],"\u8a00\u3048":[157,195],"\u8a00\u53ca":[154,204],"\u8a00\u8a9e":[],"\u8a00\u8a9e\u540d":17,"\u8a02\u6b63":166,"\u8a08\u6e2c":[14,34,37],"\u8a08\u7b97":[0,34,39,40,41,115,117,142,143,144,158,163,174,175,177,181,182,208],"\u8a18\u4e8b":[12,159,203],"\u8a18\u53f7":[35,133,180,193,195,201],"\u8a18\u6cd5":[158,203],"\u8a18\u8f09":[12,39],"\u8a18\u8ff0":[11,33,133,134,201,203,204],"\u8a18\u9332":[0,33,39,73,109,113],"\u8a2d\u5b9a":[],"\u8a2d\u5b9a\u5024":[34,196],"\u8a2d\u5b9a\u6e08\u307f":190,"\u8a2d\u6a02":37,"\u8a2d\u8a08":[117,190],"\u8a55\u4fa1":[11,40,115,154,157,158,167],"\u8a66\u3057":[10,33],"\u8a66\u3059":[6,7,180,185],"\u8a66\u3059\u4f8b":180,"\u8a66\u884c":0,"\u8a71\u3057":3,"\u8a71\u984c":2,"\u8a72\u5f53":[41,46,47,60,63,64,108,141,146,147,149,153,203],"\u8a73\u3057\u304f":[0,198,201],"\u8a73\u7d30":[1,14,17,24,25,26,28,30,33,39,40,41,46,59,62,75,78,84,86,89,94,103,109,110,113,117,121,124,125,127,131,134,135,136,151,157,158,166,167,181,182,190,195,199,201,208],"\u8a8d\u8a3c":[],"\u8a8d\u8b58":10,"\u8a9e\u4ee5":[158,180],"\u8a9e\u53e5":[33,40,200],"\u8a9e\u5f59":[],"\u8a9e\u6271":193,"\u8a9e\u691c":117,"\u8a9e\u7248":12,"\u8a9e\u7528":180,"\u8aa4\u3063":[12,33,39,40,41],"\u8aa4\u308a":[33,39,40,41],"\u8aa4\u52d5\u4f5c":33,"\u8aa4\u5b57":[33,35,37,39,40,166],"\u8aa4\u5dee":[37,143,144],"\u8aac\u660e":[],"\u8aad\u307f":[],"\u8aad\u307f\u3084\u3059\u3044":38,"\u8aad\u307f\u51fa\u3057":0,"\u8aad\u307f\u53d6\u308a":[88,95,124,133],"\u8aad\u307f\u8fbc\u307f":[37,40,41,109,113,116,166,201],"\u8aad\u307f\u8fbc\u3080":[34,116],"\u8aad\u307f\u8fbc\u3081\u308b":93,"\u8aad\u307f\u8fbc\u3093":[116,192],"\u8aad\u307f\u98db\u3070":201,"\u8aad\u3080":116,"\u8aad\u3081":39,"\u8aad\u3093":[3,21],"\u8ab0\u304b":3,"\u8ab0\u304c":204,"\u8ab0\u3067":41,"\u8ab2\u7a0b":40,"\u8ab2\u984c":[],"\u8abf\u3079":[55,60,144,145,199],"\u8abf\u3079\u308b":[40,144,145,196],"\u8abf\u6574":[117,156,180,195,196],"\u8abf\u67fb":33,"\u8ad6\u7406":[],"\u8ad6\u7406\u548c":[],"\u8af8\u6761":32,"\u8b66\u544a":[6,7,35,38,39,40,41,77,117],"\u8b70\u8ad6":19,"\u8ca0\u62c5":10,"\u8ca0\u6570":[39,45],"\u8ca0\u8377":[35,135],"\u8ca2\u732e":40,"\u8ce2\u304f":89,"\u8d64\u9053":143,"\u8d70\u67fb":41,"\u8d77\u3053\u3063":[88,124],"\u8d77\u3053\u308a":207,"\u8d77\u52d5":[],"\u8d77\u6e90":198,"\u8d85\u3048":[40,195],"\u8d85\u3048\u308b":[39,64,178,196,198],"\u8d85\u904e":[40,196],"\u8d8a\u3048":[33,41,195],"\u8d8a\u3048\u308b":[33,41,100,195],"\u8db3\u3057":158,"\u8db3\u308a":[37,166],"\u8ddd\u96e2":[0,34,39,142,143,144,158,163,208],"\u8efd\u3044":[88,108,124],"\u8f09\u305b\u308b":12,"\u8f9e\u66f8":[26,33,34,35,39,40,41,180,195],"\u8f9e\u691c":[37,158,178],"\u8fbc\u307f":[99,166],"\u8fd1\u3044":[64,132,172],"\u8fd1\u3044\u9806":163,"\u8fd1\u304f":[0,158,163],"\u8fd1\u3055":158,"\u8fd1\u4f3c":[37,39,143,144],"\u8fd1\u508d":[],"\u8fd4\u3055":[39,41,52,60,77,82,95,120],"\u8fd4\u3057":[11,33,40,41,45,46,47,48,50,51,52,55,57,59,60,63,64,65,67,69,81,85,86,88,92,96,101,104,107,108,114,115,116,117,119,120,125,126,127,128,129,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,158,174,175,176,177,186,201,204,207,208],"\u8fd4\u3059":[33,34,35,37,39,40,41,47,50,53,65,83,87,89,90,91,97,98,99,102,117,119,120,123,126,133,134,141,150,158,186,192,208],"\u8fd4\u3059\u304b":120,"\u8fd4\u3059\u4f8b":155,"\u8fd4\u3063":[41,126,157,158],"\u8fd4\u308a":[103,117,126,199,208],"\u8fd4\u308a\u5024":[33,40,41],"\u8fd4\u308b":35,"\u8fd4\u4fe1":[10,203,204],"\u8fd4\u4fe1\u5143":204,"\u8fd4\u4fe1\u5148":204,"\u8fd4\u5024":[],"\u8fd4\u5374":[122,201],"\u8ff0\u3079":201,"\u8ff0\u8a9e":33,"\u8ffd\u52a0":[],"\u8ffd\u8a18":[12,33,39],"\u8ffd\u8de1":[],"\u9000\u907f":89,"\u9001\u3063":[3,16,17,19],"\u9001\u308a":[12,192],"\u9001\u308a\u65b9":[],"\u9001\u308b":[17,19,186,192],"\u9001\u4fe1":[],"\u9006\u306b":[200,204],"\u9006\u5f15":200,"\u9006\u5f15\u304d":[],"\u9006\u6587\u66f8\u51fa":41,"\u9006\u9806":201,"\u9010\u6b21":[0,41,167,180],"\u9014\u4e2d":[12,39,41,133,174,175,192],"\u901a\u308a":[6,7,8,12,21,28,30,49,84,86,92,93,100,101,102,103,104,106,117,120,121,122,127,131,135,141,143,144,146,147,148,149,151,153,154,155,157,158,163,167,168,170,177,180,181,195,203],"\u901a\u4fe1":[],"\u901a\u5e38":[33,39,41,50,65,73,78,86,89,94,101,117,127,135,157,161,166,181,182,198,201],"\u901a\u77e5":[12,114],"\u901f\u3044":[41,178],"\u901f\u304f":[28,33,121,200],"\u901f\u3084\u304b":77,"\u901f\u5ea6":[33,37,40,134,178,200],"\u9023\u643a":0,"\u9023\u7d50":[33,39,40,60,203],"\u9023\u7d61":17,"\u9023\u7d9a":[40,60,127,175,180,193,195],"\u9032\u3081":[],"\u9032\u3093":0,"\u9032\u6570":[82,158],"\u9045\u3044":[143,178],"\u9045\u304f":[33,144,157,158,167,199],"\u904b\u7528":0,"\u904e\u7a0b":73,"\u9054\u3057":181,"\u9054\u3059\u308b":64,"\u9054\u6210":100,"\u9055\u3046":[35,103],"\u9055\u3063":174,"\u9069\u3057":[0,121,159],"\u9069\u5207":[0,33,35,41,100,103,117,121,127,134,167,180,201],"\u9069\u5408":[180,195,201],"\u9069\u5408\u7387":180,"\u9069\u5b9c":[12,41],"\u9069\u6642":55,"\u9069\u7528":[],"\u9078\u3073":176,"\u9078\u3076":[0,117,135],"\u9078\u3079":[5,117],"\u9078\u3093":121,"\u9078\u629e":[],"\u907f\u3051\u308b":117,"\u90e8\u5206":[],"\u90fd\u6c11":[193,195],"\u914d\u4e0b":[12,136],"\u914d\u5217":[],"\u914d\u5e03":[23,24,25,26,30,31,39,41],"\u914d\u7f6e":[12,201],"\u91cd\u3044":[0,94,117],"\u91cd\u304f":195,"\u91cd\u306a\u3063":40,"\u91cd\u307f":[],"\u91cd\u307f\u3064\u304d":41,"\u91cd\u307f\u4ed8\u304d":[],"\u91cd\u307f\u4ed8\u3051":[117,195],"\u91cd\u8907":[33,41,63],"\u91cd\u8981":[0,10,12,14,28,33,46,50,75,76,117,121,127,135,159,180,186,202],"\u91cd\u8996":[159,195],"\u91ce\u9996":41,"\u91cf\u6307":167,"\u91cf\u8a08":34,"\u9234\u6728":39,"\u932f\u8aa4":0,"\u9577\u3044":33,"\u9577\u3055":[39,47,60,63,64,66,134,198],"\u9577\u3059\u304e\u308b":40,"\u9577\u4ee5\u4e0a":[60,63],"\u9577\u5185":[33,41],"\u9577\u5185\u6b69":[33,41],"\u9577\u578b":[64,86],"\u9577\u65b9\u5f62":37,"\u9577\u6642\u9593":[114,131],"\u9577\u751f\u304d":121,"\u9577\u91ce":41,"\u9589\u3058":[37,178],"\u9589\u3058\u308b":[34,37,178],"\u958b\u3044":[33,35,37,40,83,91,131,161],"\u958b\u304b":131,"\u958b\u304d":[46,51,181],"\u958b\u304f":[33,37,39,46,161,181,201],"\u958b\u304f\u969b":39,"\u958b\u3051":39,"\u958b\u3051\u308b":[],"\u958b\u3053":51,"\u958b\u59cb":[14,37,40,41,60,88,119,124,134,143,146],"\u958b\u653e":33,"\u958b\u767a":[],"\u9593\u9055\u3063":[37,39,40,41,131,175,176],"\u95a2\u308f\u3089":[117,134],"\u95a2\u4fc2":[],"\u95a2\u4fc2\u5f0f":[],"\u95a2\u6570":[],"\u95a2\u9023":[],"\u95b2\u89a7":205,"\u95be\u5024":[],"\u9632\u304e":40,"\u9632\u3050":158,"\u964d\u9806":[63,64,117,120,201],"\u9650\u3063":60,"\u9650\u3089":10,"\u9650\u308a":[11,60,73,95,126,193,195],"\u9650\u5b9a":167,"\u9650\u6587":[37,121],"\u9664\u3044":[100,102,105,134,149,153],"\u9664\u304f":39,"\u9664\u3051":63,"\u9664\u53bb":[35,40,125,148,179],"\u9664\u5916":93,"\u9664\u7b97":[],"\u9665\u3063":39,"\u968e\u5c64":11,"\u96a3\u308a\u5408\u3063":180,"\u96a3\u63a5":[0,157],"\u96c5\u5e83":41,"\u96c6\u307e\u3063":199,"\u96c6\u307e\u308a":117,"\u96c6\u3081":199,"\u96c6\u5408":[39,63,71,75,117,156,167],"\u96e2\u308c":208,"\u96e3\u3057\u3044":0,"\u9759\u7684":[],"\u975e\u308f":193,"\u975e\u4e92":[33,39,40,41],"\u975e\u4e92\u63db":[33,37,41],"\u975e\u4f9d":24,"\u975e\u516c\u958b":12,"\u975e\u5206":117,"\u975e\u5e38":[39,167,186],"\u975e\u63a8":[37,39,40,41,121,143],"\u975e\u63a8\u5968":[33,39],"\u975eascii":180,"\u9805\u76ee":[34,82,117,119,121,186,190,202],"\u9806\u4f4d":55,"\u9806\u5e8f":[117,122,195,201],"\u9806\u6b21":[132,133,192,201],"\u9806\u756a":[57,64,133,157,195,201],"\u9818\u57df":[28,39,41,60,63,208],"\u982d\u6587":192,"\u982d\u8f9e":178,"\u983b\u51fa":33,"\u983b\u5ea6":[33,120],"\u983b\u7e41":[28,63],"\u9855\u8457":180,"\u985e\u4f3c":[],"\u985e\u7d39":195,"\u985e\u7fa9":117,"\u99c4\u76ee":10,"\u9ad8\u3044":[0,82,117,120,135,180,201],"\u9ad8\u3044\u9806":201,"\u9ad8\u304f":[33,75,195],"\u9ad8\u307e\u3063":0,"\u9ad8\u6a5f":[0,11],"\u9ad8\u7cbe":0,"\u9ad8\u901f":[0,11,34,37,40,71,102,117,121,143,144,157,158,163,167,178,180,185,186,200,201],"\u9bae\u5ea6":159,"\u9df2\u7530":40,"\u9df2\u7530\u57fa":40,"\u9ed2\u3044\u70b9":163,"\uff01:":28,"\uff01\u300d":[103,117,157,158],"\uff01\u3057":2,"\uff01\uff08":17,"\uff01\uff09":[174,175],"\uff08*":5,"\uff08,":201,"\uff08-":[117,201],"\uff08.":12,"\uff08=":117,"\uff08@":[35,37],"\uff08\u300c":[161,195],"\uff08\u3064\u307e\u308a":94,"\uff08\u4f8b":33,"\uff08\u578b":66,"\uff08\u79d2":60,"\uff08\uff1d":172,"\uff08age":121,"\uff08and":156,"\uff08byte":[47,60],"\uff08ci":21,"\uff08document":41,"\uff08eol":33,"\uff08gnu":28,"\uff08groonga":33,"\uff08least":81,"\uff08longest":[37,158],"\uff08markdown":12,"\uff08messagepack":28,"\uff08node":21,"\uff08normalization":161,"\uff08not":156,"\uff08or":156,"\uff08perl":135,"\uff08personal":[],"\uff08piro":41,"\uff08proc":55,"\uff08romaji":174,"\uff08rroonga":33,"\uff08ruby":21,"\uff08score":117,"\uff08textile":12,"\uff08therubyracer":12,"\uff08todo":158,"\uff08tokenbigram":195,"\uff08tokenmecab":195,"\uff08true":198,"\uff08virtualbox":12,"\uff08world":182,"\uff09:":[24,25,26,27,29,30,115,116,193],"\uff09\u3001":[12,178,193],"\uff09\u3002":[33,195,201],"\uff09\u307e\u305f":[106,127,157,158],"\uff09\uff08":121,"\uff11\u3064":[9,86],"\uff11\u5bfe":9,"\uff12\u3064":208,"\uff13\u3064":182,"\uff1f\u300d":199,"\uff1f\uff09":33,"\uff4d\uff59\uff53\uff51\uff4c":[146,147],"\uffef\"":180,"\ufff0\"":180,"\ufffecrch":127,"\ufffetext":127,"] [":134,"] \u6708":33,"]%":167,"]'":[135,186],"])":[45,144,146,152],"],":[75,78,82,84,86,88,89,92,95,103,104,106,107,114,117,119,120,122,124,125,127,128,129,133,134,138,141,143,146,147,148,149,151,153,154,155,157,158,159,161,167,168,170,174,175,177,179,180,192,195,198,199,200,201,203,204,205,206,207,208],"].":[33,41,103,117],"]/":205,"]:":167,"][":[33,37,38,39,40,41,157,167],"]\"":[39,40,167,204],"]\u3002":41,"]]":[33,90,92,95,120,133,134,138],"]]]":[90,120,158,195],"]isk":167,"]x":204,"]}":[33,82,154,198],"^ \"":[84,158],"^commit":12,"_$":[120,121],"_')":[73,85],"_*":[],"_\"":37,"_a":[80,192],"_accepted":114,"_account":17,"_add":[53,55,63],"_address":[80,192,205],"_adjust":[11,62,117],"_age":141,"_all":[33,50],"_alloc":[53,69],"_allowed":[80,192],"_already":[80,192],"_and":[11,62,168],"_animal":198,"_append":[11,53,56,60],"_arg":80,"_argument":[60,63,64,80,192],"_arguments":33,"_asc":63,"_ascending":64,"_at":[],"_auto":[],"_available":[80,192],"_avg":117,"_avoided":[60,80,192],"_bad":80,"_basic":[135,186],"_batch":41,"_between":41,"_binary":39,"_blank":106,"_block":[80,192],"_blog":203,"_body":[85,195,207],"_bool":[35,60],"_broken":80,"_buffer":[50,56,80,192],"_build":14,"_builtin":[37,51,60,66],"_bulk":[50,53],"_busy":[80,192],"_but":11,"_by":[33,36,37,38,41,53,60,63,64,69,204],"_byte":[80,192],"_cache":[],"_calc":[],"_call":[11,80,114,192],"_cancel":[],"_cas":80,"_character":53,"_characters":53,"_charlen":69,"_check":[14,41,60],"_checks":106,"_child":[80,192],"_chunk":33,"_chunked":33,"_circle":[],"_clear":[],"_client":158,"_clone":12,"_close":[11,37,41,46,50,53,56,57,60,64,69],"_code":[69,78,160],"_column":[],"_columns":[],"_command":[],"_comment":154,"_commit":56,"_compare":60,"_compile":53,"_compress":47,"_concurrency":132,"_cond":65,"_configure":40,"_connected":[80,192],"_connection":80,"_const":[11,53],"_content":[],"_control":[33,80,192],"_controllen":33,"_copy":[22,33,43,76],"_corrupt":[80,192],"_count":[],"_create":[],"_ctx":[],"_current":46,"_cursor":[],"_custom":168,"_dat":[],"_data":[],"_database":[],"_dataset":[36,137,139,177],"_date":12,"_db":[],"_db\u30d5\u30e9\u30b0":37,"_deadlock":[60,80,192],"_debug":[7,14],"_decr":60,"_default":[33,39,48,52,59,168,186],"_defrag":60,"_del":33,"_delete":[33,37,55,60,63,64],"_delimited":42,"_delimiter":[106,127],"_denied":[80,192],"_desc":63,"_descending":64,"_descriptor":[80,192],"_device":[80,192],"_difference":63,"_dir":[12,33,37,69],"_directory":[80,192],"_dist":39,"_distance":[],"_domain":80,"_down":[80,192],"_drilldown":117,"_element":58,"_empty":[80,192],"_enable":33,"_enabled":33,"_enc":[52,64],"_encoding":[],"_end":80,"_enough":[80,192],"_entries":[46,81],"_entry":55,"_error":[69,80,103,192],"_escalation":[],"_escape":[],"_estimate":[33,37,54],"_eval":[],"_example":174,"_exec":[33,50,53,80],"_exist":[],"_exists":[80,192],"_expander":[],"_expanders":[109,110,113,166],"_expansion":[],"_expire":60,"_expr":[],"_expression":[117,167],"_extract":[33,42],"_failure":68,"_false":60,"_file":[78,80,135,166,186,192],"_filename":80,"_files":[80,192],"_filter":[],"_filtered":102,"_filters":[],"_fin":[33,39,50,53,68,69],"_finalizer":[50,61],"_flags":[],"_float":[33,66],"_flow":[80,192],"_flush":[],"_for":[11,33,117],"_format":[80,192],"_free":69,"_friends":200,"_full":[],"_func":[41,50,61,65,69,126],"_function":[33,69,80,114,168,192],"_geo":[],"_get":[33,37,38,39,41,45,46,47,48,50,52,53,55,58,59,60,61,63,64,65,69,126],"_github":17,"_gqpt":134,"_gqtp":134,"_groonga":[78,103],"_group":[33,63],"_gt":64,"_hash":[],"_header":86,"_hit":[119,135,164,192,201,205],"_hits":117,"_hook":[],"_host":134,"_html":[],"_http":[134,135],"_hugetlb":37,"_i":[80,192],"_id":[12,33,37,38,41,47,50,53,56,57,58,60,63,64,69,73,79,114,117,158,201,208],"_idf":[],"_ii":[],"_illegal":80,"_implemented":[80,192],"_improper":80,"_in":[],"_inappropriate":80,"_incompatible":80,"_incr":60,"_index":[],"_indexer":38,"_indexes":[],"_info":[],"_information":86,"_init":[37,39,41,50,53,60,65,68,69,160],"_initialized":[80,192],"_input":[33,78,80,158],"_install":[],"_int":[33,53,60,66],"_interrupted":[80,114],"_invalid":[60,63,64,80],"_io":[33,41],"_ip":[192,205],"_is":[33,37,60,78,80,114,192],"_isspace":69,"_ito":37,"_itoh":37,"_ja":40,"_jis":[28,180],"_jp":28,"_json":49,"_key":[],"_keys":[63,117],"_keywords":53,"_labeled":117,"_large":[80,192],"_lcp":63,"_leading":117,"_leak":14,"_left":[37,54,80,145,192],"_len":[39,47,53],"_length":[69,192],"_level":[],"_lexicon":33,"_likes":[78,103,117,157,158,181],"_limit":[],"_link":[80,192],"_links":[80,192],"_list":[],"_literal":41,"_load":[],"_local":134,"_location":[78,204],"_lock":[37,45,60,65,69],"_locked":60,"_locks":[80,192],"_log":[],"_logger":[33,39],"_logical":33,"_long":[80,192],"_lt":64,"_lzo":[47,80,85],"_malloc":69,"_many":[41,80,192],"_mask":60,"_match":[],"_max":[46,48,57,80,117,126,152,192],"_mecab":33,"_memo":151,"_memory":[],"_message":[78,167,203],"_messages":[12,17],"_min":[33,48,57,117],"_mode":41,"_modified":204,"_module":135,"_most":[],"_mruby":[7,8],"_msgpack":49,"_multiple":168,"_mutex":[65,69],"_n":[40,46,104,117,138],"_nabe":41,"_name":[],"_names":51,"_network":80,"_new":[9,37,39],"_next":[35,40,54,57,64],"_nfthreads":65,"_nhooks":55,"_nil":[35,50,53,63,64],"_no":[],"_nofile":[40,160],"_none":49,"_normalize":[33,39,42,63,121,161],"_not":[62,80,88,92,96,114,117,129,192],"_nromalize":161,"_nsubrecs":[41,47,73,117,199],"_number":[78,189,192,205],"_numbers":33,"_o":[80,192],"_obj":[],"_object":80,"_of":[80,94,192],"_offline":38,"_offset":[],"_on":[80,192],"_only":[80,192],"_op":[11,33,53,62],"_open":[35,37,39,46,50,51,54,56,57,64,69,80,192],"_operation":[80,192],"_operator":[47,53,54,62,63],"_optarg":[33,51,62],"_options":[40,158],"_or":[],"_org":12,"_otoj":14,"_output":[],"_over":[80,192],"_pack":[],"_parameters":[],"_parse":[33,52,53],"_pass":135,"_pat":[],"_path":[],"_per":[37,50],"_permission":80,"_permitted":[80,192],"_persistent":[47,63],"_pipe":[80,192],"_plugin":[33,36,37,41,69],"_plugins":[],"_point":[54,144,200],"_port":134,"_position":[47,85,86,103,117,146,147,151,153,154,157,158,159,167,168,170,179,181,195,201,203,204,207],"_posting":[54,57],"_pragma":117,"_prefix":[],"_preparer":[120,174,175,177],"_prepend":60,"_previous":46,"_printf":41,"_probability":[37,120],"_proc":[],"_process":[80,192],"_processes":[],"_proxy":135,"_ptr":[50,53,69],"_push":11,"_put":[],"_pvector":[50,53],"_ql":41,"_qlog":39,"_queries":[119,135,164,192,201,205],"_query":[],"_range":[],"_rate":[119,135,164,192,201,205],"_ratio":41,"_rc":[45,46,47,48,50,51,52,53,54,55,56,58,59,60,61,62,63,64,68,69],"_read":80,"_realloc":69,"_records":[],"_recover":[41,51],"_rectangle":[],"_recursive":33,"_recv":41,"_reference":117,"_refused":[80,192],"_register":[],"_reinit":60,"_release":12,"_remove":[],"_rename":[],"_reopen":[],"_repair":38,"_request":114,"_res":134,"_resource":[60,80],"_result":[63,80,117],"_results":63,"_retry":80,"_right":[37,54,145],"_rk":64,"_rotate":33,"_ruby":33,"_s":41,"_same":40,"_scalar":[47,84,85,86,88,92,93,94,96,100,103,104,108,117,124,125,129,141,143,146,147,148,149,151,153,154,157,158,159,167,168,170,179,181,195,199,200,203,204,207],"_schema":[],"_score":[33,37,39,40,47,73,84,117,120,158,168,204,208],"_scorer":33,"_scorers":168,"_script":115,"_search":[],"_section":[33,41,47,85,86,203,204],"_seek":[80,192],"_sel":42,"_select":[],"_selector":[],"_send":[46,49,50],"_sequence":[80,192],"_serial":84,"_set":[33,38,39,41,45,46,48,50,52,55,58,59,60,61,64,65,126],"_setoperation":63,"_setpshared":40,"_shard":[],"_shutdowned":[80,192],"_signal":65,"_sis":[63,121,157,158,193,206],"_size":[],"_sjlj":41,"_skip":40,"_small":[80,192],"_snip":[39,41],"_socket":[80,192],"_sort":63,"_sortby":[],"_source":12,"_space":[80,192],"_sparse":33,"_stable":48,"_stack":80,"_stamp":160,"_started":78,"_stop":[41,125,179],"_str":[53,204],"_strerror":41,"_string":[],"_success":[45,46,47,50,51,53,68,69,80,160],"_such":[80,192],"_suffix":[33,37],"_suggest":36,"_sum":117,"_supported":[80,192],"_symbolic":[80,192],"_synonyms":166,"_syntax":[53,80],"_system":[37,80,192],"_t":[65,80],"_table":[],"_tables":[33,40,50],"_tag":[84,146,149],"_tags":[200,204],"_target":[],"_temporarily":[80,192],"_term":[33,42],"_text":[14,33,41,53,106],"_tf":[],"_thread":[],"_threads":126,"_threshold":[],"_time":[78,160],"_timeout":[45,80,192],"_title":[93,134,201,203],"_to":[33,52,101,203,204],"_token":41,"_tokenize":[],"_tokenized":[106,127],"_tokenizer":[],"_too":[41,80,192],"_touch":[35,51],"_tp":132,"_true":60,"_truncate":[37,41,47,63],"_tsv":[49,166],"_type":[],"_types":[],"_uint":[33,66],"_unavailable":[80,192],"_unknown":80,"_unlink":[50,60],"_unlock":[60,65,69],"_unmap":[],"_unregister":[],"_unsupported":80,"_untag":[],"_update":[47,63,80,117,157],"_use":[33,41,50,80,101,192],"_user":[],"_users":204,"_utf":[52,64],"_valid":135,"_value":[],"_values":[],"_valule":149,"_var":[41,53,61,66,69],"_vars":69,"_vector":[33,40,41,47,50,53,60,75,84,85,86,92,117,154,155,198,200,204],"_version":[],"_versions":12,"_vesion":[148,155],"_vprintf":41,"_vsize":[50,53],"_w":180,"_weight":[41,47,75,85,86],"_when":78,"_win":69,"_with":[7,8,47,63,121,157,158,193,206],"_word":[41,93,125,179],"_would":[80,192],"_xml":49,"_xxx":117,"_yyyymmdd":103,"_zlib":[47,80,85],"_zone":135,"_{":40,"`/":18,"``":[34,35,53,203],"`hostname":133,"boolean":42,"byte":[33,39,47,60,63,79,134,153,192],"case":[69,113,139,168,170],"char":[41,47,50,51,52,53,60,61,63,65,66,69],"ci\u4e00\u822c":[],"ci\u4e0a":21,"class":[146,147,148,153],"const":[38,47,50,51,52,53,60,61,63,64,66,69],"continue":41,"cpu\u30b3\u30a2":[],"d\u30ad\u30fc":201,"dat\u30ad\u30fc":40,"default":[],"delete":[],"do":[41,96,134],"double":[33,158],"else":33,"enter\u30ad\u30fc":40,"enum":51,"error\u30bf\u30b0":39,"export":18,"false":[12,35,40,41,83,84,85,87,88,89,90,92,96,97,98,99,108,114,123,127,129,141,146,149,151,154,157,158,180,182,198,206],"float":[39,103,117,143,164,182,198],"for":[2,8,31,39,42,45,49,50,51,53,54,60,65,69,79,96,129,133,135,137,138,139,143,153,158,160,168,170,171,177,180,181,182,184,190,204],"function":[33,42,50,69,78,138,140,168,170,171,192],"geopoint\u9593":37,"get\u30e1\u30bd\u30c3\u30c9":136,"gib\u304f\u3089\u3044":181,"gmo\u30e1\u30c7\u30a3\u30a2":41,"html\u30bf\u30b0":148,"id\u9806":64,"if":[11,33,45,47,49,50,51,54,60,61,63,65,68,69,75,79,96,133,135,137,138,139,158,160,168,170,184],"import":12,"in":[],"int":[33,35,39,40,41,45,46,47,50,51,53,54,55,56,57,59,60,61,63,64,65,66,69,75,84,88,103,117,120,121,124,129,141,143,151,152,157,158,164,168,170,174,175,177,182,195,198,199,200,201,203,204,208],"interface":138,"long":[33,56,59,114],"lzo\u3044":85,"mo\u30d5\u30a1\u30a4\u30eb":17,"new":[],"nginx\u3089\u3057\u3044":41,"null":[],"package":[],"po\u30d5\u30a1\u30a4\u30eb":17,"post\u30e1\u30bd\u30c3\u30c9":40,"return":[50,65,68,78,160],"sort\u30ad\u30fc":34,"static":65,"this":[18,39,47,49,50,51,60,69,96,103,117,133,135,137,138,153,157,158,160,186,198,201,205,207],"true":[34,40,41,75,83,84,85,86,87,88,89,90,92,94,95,96,97,98,99,100,101,103,104,105,108,109,110,113,114,115,116,117,121,123,124,125,129,141,143,144,145,146,147,148,149,151,153,154,155,157,158,159,161,167,168,170,179,182,198,199,200,201,203,204,206,207,208],"try":[45,133,204],"var":[11,28,69,86,131,133,135],"void":[38,45,48,51,52,59,60,63,64,65,68,69],"while":[51,96],"with":[],"x\u30df\u30ea":[158,182],"{\"":[33,75,82,100,101,104,115,116,120,134,146,147,151,157,158,159,167,170,174,175,177,179,203],"{\"_":[117,141,157,158,198,200,208],"{\\":95,"{column":167,"{key":117,"{label":[103,117],"{language":17,"{logical":172,"{name":158,"{path":28,"{prefix":[28,109,110,113],"{table":[117,151],"{time":160,"{type":138,"{user":181,"{yyyymm":172,"{yyyymmdd":172,"| _":208,"| c":158,"| n":158,"| y":40,"|')":85,"|..":41,"|:":160,"|<":160,"|>":160,"|allow":[117,157],"|b":167,"|correct":120,"|enable":127,"|ga":117,"|http":134,"|info":167,"|key":[121,157,158,206],"|n":33,"|ng":117,"|none":117,"|on":117,"|oo":117,"|persistent":[86,88,122,124],"|ro":117,"|suggest":120,"|table":121,"|with":[41,75,85,86,103,106,117,146,147,151,153,154,157,158,159,167,168,170,179,181,195,201,203,204,207],"||":[11,39,40,158,168,203],"})":138,"},":[75,88,104,107,117,124,125,127,128,129,134,143,148,151,155,157,158,159,167,180,200,201,203,204,206,207],"}.":[117,151],"}/":[17,28,109,110,113],"}:":167,"}\\":158,"}]":[],"}_":[103,172],"}attr":40,"}e":158,"}|":160,"}}":75,"~ \"":[158,167],"~${":167,"~*":53,"~number":158,"~uint":33,abc:33,abcde:106,abi:33,able:[168,170,171],about:[14,18,21,46,69,78,79,133,140,160,168,170,171],above:[114,138,177],ac:161,accept:[35,79],accepts:[129,133,138],accesses:47,accessor:[33,60,63],accurate:153,acquire:45,acquires:45,acronym:184,actual:[135,168],add:[17,18,30,39,41,102,117,127,140,180],added:[42,54,63],adding:[18,79],additional:40,address:[37,39,133,138,192],adjust:117,adjuster:[],admin:[33,35,41],advanced:42,advantage:153,after:[18,54,138],again:[45,135],against:[47,51,133],age:[86,94,117,141],ages:[121,122,141],aggregate:153,ahost:167,aio:40,akio:[35,39],al:180,alert:[41,97,98,133,135,160],ali:84,alice:[84,88,117,124,129,135,141,151,157,186,204],alisa:151,all:[39,47,50,51,54,79,96,103,117,157,158,160,177,207],alloc:[119,133,135,164,192,201,205],allocate:[],allocated:69,allocates:69,allow:[25,39,117,157],allowed:139,allows:153,almost:184,already:[45,69,139],also:[79,103,117,138,153,157,158,168,184],always:101,am:[147,153],amd:12,an:[51,54,63,69,133,135,168],and:[18,33,40,41,42,45,47,49,51,53,54,60,63,69,96,117,125,133,135,137,138,139,151,153,158,160,168,170,171,177,179,181,203,208],animation:200,ann:12,another:33,any:[133,168],api:[],appeared:168,appears:153,apple:161,application:[133,135,186],applications:153,applied:42,appveyor:41,april:12,apt:[12,18,21,25,30,39],aptitude:14,ar:[127,193,195],arai:33,aramaki:[35,37],arc:127,architecture:133,architectures:12,archive:[],are:[17,40,45,51,53,54,69,75,96,117,133,137,138,139,153,160,168,170,171,177,184],argc:65,argument:[136,158,168],arguments:[69,133],argv:65,armhf:41,arnaud:37,array:82,art:204,arted:158,article:203,articles:203,as:[17,39,50,69,79,127,133,135,137,138,139,153,168,170,184,190],ascii:[157,158,180],assigned:33,associated:69,assumed:61,at:[18,42,54,133,160,204],auth:[135,186],auto:[101,120],autoconf:[6,37],autogen:[6,12,17,39],automake:[6,35],automatically:51,autotools:[3,5],available:[42,69],avg:[41,103,117,132],aware:69,back:158,background:133,backup:[51,93],backward:129,bad:[40,41,192],base:[12,69,135],baseball:[200,203],based:[54,146,147,153,168,169,170,190],bash:28,be:[18,47,50,51,53,54,60,63,69,79,89,96,113,129,133,138,139,160,168,170,171,177,184],became:190,because:[51,135,138,164,168,170,177,184],become:42,been:12,before:21,begin:132,behaves:138,bernard:33,beta:42,between:[],bi:[193,195],bigram:[],bill:[33,193,195],billiard:[193,195],bin:[18,31],binary:[0,164,182],bind:37,binding:[42,146,147],binlib:12,bison:12,bit:[8,21,23,24,25,26,29,30,31,33,40,134,182],black:161,block:198,blog:[154,195,201,203],blogroonga:[],blogs:195,bm:[168,170],bob:[88,117,124,129,135,141,151,157,186,204],bom:35,book:158,bookmark:[75,93],bookmarks:[75,93],bool:[40,84,125,144,145,157,179,182,198,206],boost:174,boston:204,both:170,bottom:[37,54,145],brazil:199,brew:[18,27],british:207,broken:[47,51,96,192],brooklyn:204,brother:157,browser:17,bsd:[5,28,33,41],buf:[47,60,63],buffer:[50,60,82],buffered:56,bug:[39,42],build:[8,12,18,21,25,30,31,40,119],builder:56,building:49,built:60,bulk:[33,53],but:[129,133,138,139,168,170],by:[18,39,50,51,53,54,68,69,79,100,138,157,160,168,170,171,177,184,199],bye:125,bytes:[32,61,69],cache:[],calc:[],calculate:138,called:69,caller:61,calling:[68,69],calros:141,camp:204,can:[17,18,45,49,50,51,69,79,113,129,133,135,153,160,168,170,177,184],cancel:[79,114],canceled:114,canceling:79,candidate1:120,candidate2:120,candidate:[120,138],cannot:[],care:170,cares:170,carlos:[88,124,129],cas:192,cases:[168,170,184],cat:12,cd:[12,17,24,25,26,27,28,29,30,31],cdbs:37,ce:180,ceekz:40,center:144,centos6:39,centos:[],central:204,cents:180,cflags:29,ch:127,change:[18,39,135,186],changed:[42,135],character:[69,160],characteristic:170,characteristics:153,charlie:204,check:[],checked:12,checking:[51,138],checks:[41,51,106],china:199,choose:133,christian:33,chroot:12,chunk:82,chunks:196,ci:[],ciritical:135,cities:143,city:[143,204],clean:14,clear:[41,60,96],cleared:96,clearlock:[],clears:47,clone:[],clumns:181,cmake:[3,5,6],code:[17,78,129,160,164],codes:[12,68],col:60,color:161,column:[],columnn:39,columns:[35,39,51,95,117,137,181],com:[9,199],come:204,comma:33,command:[],commandinput:33,commands:[79,184],comment:[33,154,203,204],comments:[],commit:17,common:[37,63,64,133,158],compared:153,compatibility:[129,161],compatible:135,complete:[38,120,138,174,176],composition:161,compress:85,compute:170,computed:69,computes:168,concatinated:138,concurrently:160,cond:[40,65],condition:158,conditional:120,conf:196,config:[8,31,34,77],configuration:[40,135],configure:[],confirm:17,conifugration:21,connection:192,connections:133,container:53,contains:[168,170],content:[37,39,40,41,78,103,117,135,148,151,153,154,157,158,159,168,179,181,186,203],contents:69,context:[33,50,53,60,103,135,153],contrast:133,contrib:12,copa:33,copied:69,core:134,cores:138,correct:[120,138,175],correction:175,corresponding:60,cosmo:[40,41],count:117,country:[92,199,205],cover:153,coverage:14,cpu:[0,28,134,135,138,186],crashed:96,crch:127,create:[69,93,133],created:[69,103,138,204],createfilemapping:33,createrepo:12,creates:[53,69,137,160],crit:[97,98],critical:[69,133,160],ctrl:[133,192],ctx:[9,46,47,50,51,53,60,61,63,69],curl:[21,27,28,39,114,133,135,138,164,186],current:65,currently:[49,51,135],cursor:[54,57,64],custom:168,customize:135,customized:160,customizes:168,cutter:[],cxxflags:29,daemonize:138,daiki:[35,36,39],dangerous:[47,51,96],dash:28,dat:178,data:[],database:[],dataset:[137,138,139],datasets:137,date:134,dave:141,day:[159,160],db1:186,db2:186,dbms:153,dcb:41,dcmake:[7,8,31],dd:[158,160,167],ddb:[119,201,205],ddl:195,de:17,deb:[12,25,30,39],debhelper:37,debian:[],debootstrap:12,debug:[8,33,97,98,133,135,160],decrypt:12,defalt:35,define:[],defines:137,defrag:[],deleted:60,delimit:40,demo:200,depends:[42,168,170,171],deprecated:77,derived:139,descending:33,describe:69,described:133,describes:[18,78,133],description:[193,204],designed:184,desktop:[8,31],dest:[63,132,133],detail:134,details:[69,79,160],dev:[6,7,25,30],develop:[77,179],developed:179,developer:204,developing:179,development:204,develops:179,dewangga:33,df:170,dgrn:[7,8],dh:12,dictionary:[161,180],diff:134,different:138,digits:160,directive:135,directory:[69,138,139,192],disable:[37,135,138],disabled:160,disables:[18,135],disk:167,dist:12,distance:143,distinct:138,distributions:12,divided:170,dll:[37,39,41],doc:[12,16,17,18,207],document:[12,35,133,146,147,153,158,168,170],documentation:[18,21],documentations:140,documents:[151,153,170],doesn:[135,168,170],doing:96,domain:[],don:[49,53,96,133,135,168,170,171,177],done:45,download:[12,24],downloads:31,dragonfly:35,draw:200,drilldown:[],droonga:[149,172],due:153,dump:[],ea:[127,160],each:[53,79,120,135,138,160,174,175,177],ear:127,earch:127,earlier:129,easier:168,easy:[133,168],ec:117,ecmascript:[39,40,117,156,158],edge:9,edict:41,edit:[],editor:17,editrc:37,effective:133,eggs:203,eight:201,eito:40,el:[24,180],elapsed:[78,138,160,164],element:[33,75,158],elements:75,elfring:39,ellip:143,emacs:17,embedding:133,emerg:[97,98],emergency:[133,135,160],emphasize:148,empty:33,en:[120,127,174,180],enable:[],enabled:160,enables:135,encoded:138,encoding:[52,69,133,164],ency:134,end:[132,146,164,192],endpoint:[138,139],eng:[120,174],engi:[120,174],engin:[120,174],engine:[120,127,146,147,153,168,170,174,175,176,177],enginen:174,english:[2,14,18,117],enhanced:42,enourmous:177,enqueue:9,entries:[33,84,103,117,146,147,157,158,181],entry:[55,83,84,85,87,90,91,92,95,96,103,123],env:166,environment:21,eof:133,epel:[24,39],er:167,eric:141,errno:[33,41],error:[40,41,50,54,69,78,97,98,133,135,160,167,170,201],errror:167,es:180,escape:53,escaped:53,estimate:33,estimated:54,estimates:54,etc:[12,135,181,186],etime:132,euc:[28,40,133,180],evaluated:115,even:170,event:[120,137,139,174,175,177],events:186,ex:127,exact:11,example:[117,133,138,168,170,171,174,198,199,200,201,205,208],examples:[35,102],excel:166,except:181,exclamation:33,exclude:[39,40,41,100,102,103,105,141],exe:[12,31],exec:192,executable:[],execute:[133,138,139,177],executed:205,executes:[133,138],executing:[50,138],exist:168,existence:51,existing:[18,133,139],exists:103,exit:[],expect:41,explain:33,explicitly:18,expr:[53,60,61,67],express:[8,31,39,40],expression:[33,53,116,117,138],expressions:135,ext:127,extract:[160,177],extracted:53,extracts:53,extrcts:[],fa:127,factor:[41,117],failed:[45,201],failures:12,fast:[78,95,103,117,127,146,147,148,149,153,157,158,168,170,203],faster:184,favorite:17,favorited:204,favorites:204,fbnteqr:33,fd:138,feature:[17,51,133,168],fedora:[],fetched:177,file:[],filename:192,files:[],fills:138,filter:[],fin:61,finalizes:69,find:18,finds:63,finished:[114,160],firefox:17,firewood:[39,40],first:[69,103,117,157,158,168,204],five:201,fix:[42,86,88],fixed:39,flags:[],floating:182,flower:198,fluent:13,flushviewoffile:33,followee:204,follower:204,following:[18,47,69,133,137,138,139,160,168,184],fontaine:37,force:[33,127,180],foreground:133,fork:17,forks:133,form:[138,157,161,189,192,201],format:[17,42,49,69,136,138,160,164],formats:160,formula:12,found:[54,63],four:[160,201],frank:141,free:[35,41,50,82,160],freebsd:[],freed:51,frees:69,freq:177,frequency:[41,120,168,169,170,174,175,177],frequently:168,friends:200,from:[],fromtable:84,fsf:39,ftb:42,ftp:[12,134],fu:127,ful:127,full:[33,127,153,167,168,180],fulltext:[127,133,146,147,153],fullwidth:33,fumiyasu:37,func:[50,61,65,69],functionality:138,functions:[33,41,42,69,155],ga:[127,134,161],garbage:[40,82],gb:[164,196],gbyte:32,gcc:[24,26,28,29,37,39,40],gdb:14,gem:12,gemfile:39,generate:[18,69],generated:[18,69,137],generates:137,generation:18,geo:[],geodetic:182,geoindex:[],geolocation:[168,170,171],geopoint:[],geoppoint:54,geosite:200,get:[],getaddrinfo:39,getenv:33,gets:69,gettext:[17,18],ghz:134,gi:127,gib:[32,181],git:[6,7,8,12,13,17],github:[6,7,8,12,13,17,19,21,33,37,39,40,41,85],glib:40,glossary:21,gnu:[],gnupg:12,go:[159,184],gone:200,goo:[157,158],good:[103,117,125,157,158,159,179],google:[117,168,170,171,176],goroo:184,gpg:12,gpl:42,gps:0,gqtp:[],gr:[117,127],grease:198,gregex:40,grep:[24,25,26,30],grn:[],grndb:[],grnline:201,grnslap:[],grnwrap:201,gro:153,gronga:[166,176],gronnga:176,gronoga:135,groo:117,groogna:[38,186],groongau:180,group:[63,199],grroonga:176,gt:[146,147],gtar:29,gted:17,gtihub:37,guard:170,gzip:[],had:168,halfwidth:161,hana:200,hanako:92,handle:50,handled:135,hard:181,hardy:35,has:[12,42,54,63,69,133,137,160,168],hash:[178,204],hat:[],have:[49,51,159],haystack:11,hdd:134,he:180,head:[41,132,192],header:[],heavy:184,hello:[103,117,125,158,159,179,180],help:[14,17,37],helpful:168,hendro:40,here:[69,133,137,138,139,160,168,177],hex:200,hh:[158,160],hideki:33,high:84,highlight:[],highly:[168,170,171],hino:40,hiroaki:33,hiroshi:[35,37],hirotaka:33,hiroyuki:33,hmm:204,ho:180,hobby:160,hoge:142,home:[12,28,180],homebrew:[],homepage:134,hook:55,horikoshi:37,host:[133,134,167,192,205],hostname:[133,135,136],hottolink:42,hour:[45,160],how:[],html:[],http:[],httpd:[12,38,39,40,41],httprewritemodule:135,https:[],hw:27,ia:[193,195],ic:[57,180],ichii:37,id:[],idea:[],ideographic:33,idf:41,ids:[54,75,84],ieee:182,ifexists:95,ignore:33,ignored:[39,51],il:[193,195],ill:193,illegal:192,implementation:184,implemented:[33,42,170],importance:170,important:[168,170,171],improper:192,inappropriate:192,include:[16,41,100,102,103,105,141,168,170],included:170,includes:[33,170],incompatible:192,increases:170,incremented:79,index:[12,33,41,42,47,51,54,56,57,86,153,157,158,181,200,203],indexblog:203,indexbuf:47,indicates:160,info:[33,97,98,133,135,167,170],information:160,init:[28,39,41,61],initialization:138,initialize:50,initialized:[50,69],initializes:[68,69],innodb:0,input:[49,78,95,192],insensitive:[],inspect:33,install:[],installer:12,instantly:153,instead:[83,113,133,190],integer:133,intel:134,internal:41,internally:[49,50],interpreter:12,interrupted:192,into:[50,138,177],introduced:135,introduction:[],inv:134,invalid:[69,94,117,138,192],inverted:153,io:[],ip:[134,138,192,205],ipa:26,iptables:186,is:[17,18,39,41,45,47,49,50,51,53,54,61,63,69,75,79,96,103,114,117,125,127,129,133,135,137,138,139,146,147,148,149,151,153,157,158,160,164,167,168,169,170,171,177,179,184,186,190,192,198,201,203,205,207],isn:[50,51,133],iso:158,issue:19,issues:41,it:[18,47,49,50,51,53,54,63,68,69,78,95,96,103,117,129,133,138,139,157,158,159,160,168,170,184,190,200],itagaki:35,item:[120,137,174,175,177],items:117,its:[53,69,133,160],itself:75,ivh:[24,26],iwai:[38,39],ja:[12,17],jacob:33,james:206,january:138,japan:[92,199,205],japanese:[2,180],jason:206,javascript:[],je:206,jeff:206,jekyll:12,jemalloc:41,jennifer:206,jersey:204,jessie:[],jiro:200,jis:64,job:134,jobs:134,john:[92,206],joseph:206,jq:201,jquery:[35,41],json:[],jsonp:[33,37,138],juman:26,just:[51,60,133,137,138,159,160,168,204],ka:161,kakesa:33,kana:[120,137,174,175,177],karmic:14,kashihara:41,katagiri:40,katakana:[161,174],kawada:41,kawaji:39,kb:196,kbytes:134,keeps:75,ken:200,kenichi:[35,37],key:[],keybuf:63,keyid:12,keys:[],keyword:[39,40,53,117,146,147,153,157,168,170],keywords:[53,168,170],kib:[33,181],kinjirou:200,kiske:39,km:204,known:168,ko:42,koi:[28,39,133],korea:199,kuriyama:41,kwic:153,kytea:[28,39,40,127],label:[],language:17,larger:[139,177],largetext:178,last:[39,204],lat:134,latency:134,later:133,latin1:39,latin:[28,39,133],launchpad:[12,30,41],layout:12,lc:17,ld:180,learing:177,learn:[138,139],learned:139,learning:[],left:54,length:69,lenny:37,let:159,letter:161,level:[69,97,98,133,135,139,160,192],levels:135,lexicon:[33,93,121,122,134,151,154,159,161,203],lf:132,lgpl:42,li:[180,193,195],lib:[35,40,103,109,110,113],libedit:[26,28,33,34,35,37,39],libevent:[25,28,30],libgcc:41,libgroonga:20,liblzo:[25,30],libmecab:[12,25,30],libmsgpack:[25,30],libraries:[168,184],library:[49,133,184],libstemmer:41,libtool:6,libwinpthread:41,libzmq:[25,30],license:[12,42],light:184,like:[47,133,184],limit:[],limits:168,line:[21,50,78,184],lines:[14,138],link:[198,199,205],links:[198,199,205],linux:[],lion:39,list:[12,18,137,139],listen:[39,133,135,186],lists:41,ll:[127,180,193,195],lldb:[6,7],llt:127,lo:180,load:[],loaded:116,loads:139,local:133,locale:17,localhost:[12,37,114,132,133,134,135,138,164,186],localstatedir:[28,35],location:[],lock:[],locked:69,locks:[69,96,153],log:[],logaling:21,logged:160,logical:[],logrotate:[39,41],logs:[84,100,102,104,105,108,121,122,138,139,160,167,170,172],logyyyymmddhhmmss:138,longer:42,longest:63,longitudexlatitude:40,longtext:[54,182],lru:81,ls:12,lt:[127,146,147,153],lte:127,lts:[21,30],lucid:[12,35,40],lz4:[28,41],lz:28,lzo:[37,39,41,47,85,192],m6:29,mac:[],machine:133,macports:[],mail:134,main:[12,25,65],make:[],makecache:[24,39],makefile:[7,8,12],malloc:41,man:[34,141],manage:18,managed:[51,79],management:[21,51,133,153],manager:[135,186],managing:51,manner:[],many:[75,137,168,170,184],map:[37,160],mariadb:[40,41],mark:[33,161],marked:190,markup:16,markus:39,marverick:35,masaharu:[38,39],masahiro:35,masatoshi:33,massachusetts:204,master:135,match:[],matched:[54,138,168,170,171],matches:[],matsuu:35,maverick:37,max:[],maximum:[79,168],may:[47,51,96,168,170,171],mb:39,mbytes:134,me:[112,180],meaning:133,means:[49,54,69,96,117,135,160,170],mecab:[0,12,24,25,26,27,28,30,33,34,35,37,39,40,41,42,180],meerkat:37,memcached:[],memo:[41,151,168,170,171],memory:[],memos:[33,149,155,168,179],memset:33,mercurial:12,message:[69,98,100,160,167,170,203],messagepack:[],messages:40,metadata:[39,168,170,171],micro:204,microsecond:160,microsoft:[8,31,33],migrated:[103,117,157,158],mike:92,millisecond:45,milliseconds:138,mime:[33,186],min:[],minagawa:40,mingw:[12,37],minimum:69,minute:160,mitsuhiro:35,mizuhara:33,mkdir:93,mkostemp:41,ml:10,mlock:35,mm:[158,160],mmap:[],model:133,modern:204,modes:133,module:168,moero:200,money:200,monkey:198,month:[160,200],montywi:38,mooz:37,more:[69,133,139,153,168,170,192],moritapo:200,moritars:203,morning:159,most:54,mpaa:141,mruby:[6,7,8,33,40,41,115,116,172],msec:45,msg:[9,33],msgpack:[164,192],msvc:33,msyql:75,mte:42,multiline:[],multiple:[138,184],multithread:63,munin:[24,25,26,28,30,34,37,39],museum:204,music:[160,200],must:[47,51,53,54,69,89,96,138,139,177],mutex:[40,65,69],mv:99,my:[103,117,157,158],myisam:0,mysql:[0,12,24,25,26,30,41,42,75,106,117,146,147,153,166,168],naist:180,nakamura:33,name:[],namebuf:[47,60],names:84,nanoseconds:160,naoina:[39,40],nargs:53,narwhal:37,natanael:33,natty:37,ne:127,need:[18,49,53,129,133,138,168,170,171],needed:[50,135],negative:[61,69],neologism:180,nested:40,net:199,netbsd:[35,40],netinet:33,network:192,never:101,newark:204,newids:84,newly:[129,153],newnames:84,news:[],newvalue:47,next:[54,61],nfkc:161,nfs:28,nfthreads:65,ng:127,nginx:[],nginxhttpstubstatusmodule:41,nice:159,night:[159,207],nihon:174,niku:41,nine:201,nippon:174,nise:41,no:[33,34,40,42,54,93,94,102,103,117,120,167,178,192],noarch:[24,26],node:12,nogpgcheck:39,nomrally:[],none:[28,96,106,117,125,127,133,135,137,192,203],nonexistent:[103,117],normal:168,normalize:[],normalized:106,normalizer:[],normalizerauto:[],normalizernfkc:[],normalizers:107,normallexicon:161,normally:[49,50,51,133],note:[69,133,138],nothing:[49,155],notice:[33,97,98,133,135,170],notification:160,now:[],nroonga:[21,151,203],nsis:12,nsubrecs:[47,103,117,199,200,204],nt:180,nterms:82,nul:[37,51,69,180],number:[54,61,69,82,89,133,134,138,158,168,170,177,181],numbers:[33,79],nvars:61,ny:204,obata:35,obj:[47,51,53,55,58,60,61,62,67,82],object:[],objname:[83,91],obsolete:190,obtained:69,occurred:54,occurrences:170,ocelot:[37,40],october:41,of:[18,39,42,47,50,54,61,63,69,82,89,96,120,133,135,137,138,139,146,147,153,154,160,168,170,171,177,181,204],off:[41,135],official:12,offset:[],ok:92,okapi:[168,170],old:[12,69],oldvalue:47,om:180,omitted:[96,164],on:[17,42,49,51,54,60,63,69,127,133,135,138,146,147,153,168,169,170,171,186],one:[69,96,133,139,153,168,184],oneiric:[37,40],onga:153,ongaeshi:[33,35,39,40],onigmo:[33,41,167],oniguruma:33,only:[33,49,69,133,135,168,170,171],oo:[127,178],ooo:178,op:[47,53,54,62,63],opaque:192,openbsd:33,opened:[51,160],opens:[51,54],operation:[54,96,192],operator:[33,54],optarg:[51,62],option:[18,133,138,139,160],options:[],or:[41,47,49,51,54,63,69,96,114,117,129,133,138,149,151,157,160,166,168,170,180,192,207,208],oracle:[],orangain:40,org:[199,205],origin:17,original:[49,93,206],orphan:[168,170],os:[],osdn:[12,33],other:[33,45,47,51,69,96,133,139],otherwise:[60,69],out:134,output:[],outputs:[139,160],outputting:49,overcommit:181,owned:53,owner:135,packages:[12,17,24,25,26,27,28,29,30,31,190],pagerank:[168,170,171],pair:[120,137,174,175,177],palallel:12,pangolin:[30,39],parameter:[54,61,63,79,129,133,138,168],parameters:[96,138,168],parent:[103,117],parker:33,partial:11,partitioning:100,pass:135,passed:[12,51],passes:12,pat:[64,178],patch:42,path:[],patprefix:206,patsuffix:206,pattern:[157,158],pcre:39,pentium:134,perfect:170,performance:[138,153,184],period:[],permission:192,persistent:[51,63,86],pg:141,pgroonga:[33,168,172],php:[39,184],physical:82,pid:[28,33,34,133],pikonyan:200,pip:18,pkg:[28,29,35],pkgs:24,platforms:69,play:207,player:84,players:[84,124],please:[17,51,168,170,171,190],plugin:[],plugins:[113,181],po:[],poedit:17,point:[],pointed:69,pointer:69,popular:[117,133],port:[27,133,134,138,189,192,205],porting:42,position:[54,69,125,127,180],posix:[33,158],post:[],posted:204,postgresql:[0,153,172],posting:54,poyonga:184,ppa:[],pre:42,precise:[12,30,39],prefer:138,previous:[168,190],price:198,priority:117,proc:[24,25,26,30,33,55,61,63,67,69,89,117],process:[],processed:160,processes:133,processing:160,processor:[24,25,26,30],program:[133,138,139],progress:160,project:158,proonga:184,properties:160,protocol:[],provide:[138,168],provides:168,pthread:[37,40],ptr:69,pub:12,published:12,pull:[],push:[12,17],pushes:50,put:[157,170],python:[12,18,184],qps:[132,134],quantal:39,queries:[134,153],query:[],queryexpandertsv:[],question:33,quetzal:39,queue:9,quiet:192,quit:[],quiz:200,quote:158,raccoon:200,radious:144,rake:12,rakutan:203,raltime:177,ram:134,rand:[],range:[],ranguba:[41,46,75],raring:[40,41],rather:[168,170,171,184],rc:[50,68,80,127,160],rch:127,rd:[193,195],rdbms:[0,33,133],rdiscount:12,re:51,read:[153,192],readme:[12,40],reads:139,ready:18,real:153,realloc:35,really:[103,117,157,158],realtime:[120,177],received:133,receiver:[138,139],recently:81,recommend:184,record:[33,54,63,75,117,143,168,170,171,198,201,205],records:[33,54,117,160,177],recovered:51,recovers:51,rect:143,rectangle:[],recursive:[],recursively:96,red:[],redcloth:12,redhat:[28,37],reference:[33,40,75,117],referenced:94,regexplexicon:167,register:[],registered:[69,113,153],regular:[135,138,167],relation:60,relational:133,release:[12,31],released:[12,42],releases:68,remained:[160,167],remote:133,remove:[60,106],removed:113,removep:60,removing:51,rep:134,replaced:[137,139],replication:168,replied:204,replies:203,reply:203,repoforge:[24,39],reports:69,repositories:12,request:[],requests:[79,138,160],require:168,required:[21,135,138,186],requires:168,reqular:138,res2:63,res:[54,62,63,134],resizes:69,resolve:[168,170,171],resource:192,resources:[50,51,68],response:138,rest:69,restart:190,result:[11,63,139,143,153,164,192,203],results:[39,63,138,153],retry:192,returned:[54,69],returns:[47,54,63,69,129,138],reverse:[12,135],rewrited:42,rf:[24,135],rid:[56,57],right:54,ringtail:[40,41],rk:[],rl:180,rlimit:[40,160],rm:135,ro:127,roonga:[157,158],root:[33,40,135,205],rose:198,row:153,rpm:[12,24,26,35,37,39,40,41],rpmforge:24,rroonga:[21,33,40,41,46,149,151,154,155,156,168,203],ruby:[],rubygems:39,rubyinstaller:8,run:[],running:[51,79,114,133],runs:[133,139],sa:[120,175],sae:[120,175],saer:[120,175],saerc:[120,175],saerch:[120,175],sako:33,salamander:[40,41],same:[40,45,75,79,168,170,184],sample:[134,138,139],satoh:37,saucy:[40,41],save:[12,138],saves:138,say:158,scan:14,schema:137,scope:[],score1:11,score2:11,score:[11,33,40,47,75,88,117,120,124,129,138,143,151,158,168,170,171,174,175,177,195,200,201,203,204,208],scorer:[],scoring:[168,170,171],script:[],se:[127,174],sea:[127,174],sear:174,searc:174,search:[37,39,63,64,117,120,127,133,146,147,153,157,158,166,168,170,171,174,175,176,177],searched:54,searches:[],sebastian:41,sec:45,second:[160,168],section:[47,56,69,133],sed:[33,37,39],see:[18,69,79,133],segment:82,segments:82,segv:[34,40],select:[],selector:90,selects:54,self:134,sen:42,senboku:40,send:184,sender:[138,139],senna:[],sentense:33,separated:49,sequence:[79,120,137,160,174,175,177],serach:175,serch:[120,175],sergey:41,serial:84,serihiro:39,serve:12,server:[],service:[33,175,190],session:[138,184],set:[60,134],sets:50,seven:201,sh:[12,21],sha:12,sharding:[33,100,101,102,103,104,172],share:28,shared:[45,47,51],shell:133,shibuya:35,shidara:37,shift:[28,180],shimada:35,shimoda:35,shimomura:39,shinya:39,sho:40,shopping:159,shops:193,shorttext:[35,37,41,54,64,75,78,84,85,86,88,92,93,94,96,103,104,108,117,120,121,122,124,125,129,133,134,141,143,146,147,148,149,151,153,154,155,157,158,159,161,167,168,170,174,175,177,178,179,181,182,195,198,199,200,201,203,204,205,206,207,208],should:[18,50,69,79,129],show:34,shows:49,shutdown:[],sid:[12,37,41,82],sigcont:40,sigint:37,sign:12,signing:12,sigsegv:63,sigstop:40,sigusr:37,silent:21,simple:190,simplest:79,simply:170,since:[113,129,160,190],sis:37,site:[96,198,199,201,205,208],sitecountry:[199,205],sitedomain:[199,205],sites:93,six:[160,201],size:[],sizeof:[33,50,53],sjis:[28,42,133],slash:158,sleepy:159,slower:[168,170],smaller:[75,160],snippet3:153,snippet:[],so:[51,60,63,133,168,170,171],soccer:200,socket:192,soft:181,software:30,solaris:[],solr:158,solve:[168,170],some:[33,68,79,137,160],sort:[33,63],sortby:[],sound:[161,175],soundkitchen:[37,39],source:[12,33,51,78,85,86,88,200,201,203,204],sourceforge:[12,33],sources:[12,18,86],space:[33,69,75,157,167],spammer:[168,170],span:[146,147,148,153],speakers:2,spec:[12,35,39,40],specfied:54,special:117,specified:[54,61,69],specifies:[133,138],specify:[17,96,133,135,137,138,139,168],specifying:[69,168],speed:176,spelling:207,sphinx:[15,16,17,18,33,41],sphr:143,spil:33,sports:200,sql:[100,168,199],squeeze:[12,40],src:63,ss:[158,160],ssh:12,ssssss:160,st:[127,158,180],stable:77,stack:[40,192],stamp:160,standard:182,standing:184,start:[100,138,159,190],started:[78,103,117,157,158,160],starting:69,starttime:[119,135,164,192,201,205],stateful:184,states:92,status:[],still:114,stop:[33,39,133,135,168,170,171,190],storage:[146,147],store:[50,53,54],stored:[139,177],stores:53,str:[53,69],strerror:41,strict:41,string1:142,string2:142,string:[],strlen:69,studio:[8,31,33,39,40],sub:[],subject:40,submit:[120,138,174,175,177],subrecord:40,substitute:[],substitution:151,succeeded:[85,88,92,96,129],success:192,successfully:69,successor:158,such:[17,39,79,113,137,138,139,153,168,170,177],sudo:[12,14,18,21,24,25,26,27,28,29,30,39,181,190,196,205],sufficient:69,suffixsearchterms:[157,158],suggest:[],suggestion:[137,138],suitable:[133,168,170],suited:153,sum:[41,103,117,168],summary:[],sunos:41,superior:153,support:42,supported:[42,135],supports:[42,69,139],swig:42,synonym:[117,207],synonyms:166,syntax:[133,192],syscall:[41,201],sysctl:[181,196],system:[29,103,117,133,153,157,158,182],systemctl:190,systemd:[33,39],systems:153,tab:49,table:[],tablecursor:33,tablegroupflags:33,tablename:77,tables:[],tag:[12,84,103,117,149,155,168,170,171,200],tags:[33,75,86,117,121,122,149,155,200],tahr:[30,41],tail:[12,192],tajima:39,takahiro:35,takashi:[37,92],takayama:33,takayuki:37,takes:114,takuto:35,tar:[12,24,25,26,27,28,29,30],target:[],taro:200,tasuku:42,tatsuya:39,tc:[57,64],tcp:133,te:[127,180],technique:[168,170],temporary:[51,133],term:[82,85,168,169,170,207],terminal:[133,204],terms:[82,103,117,125,133,146,147,151,153,157,158,168,170,179,181,195,201],teruya:33,test:[12,14,134,198,201,203,204,205],testdb:[134,139],tests:12,tex:127,text:[33,39,54,78,96,100,103,117,127,134,151,153,157,158,164,167,168,170,178,181,182,186,203],tf:[168,169,170],than:[75,160,167,168,170,171,177,184],thanks:204,that:[39,45,47,49,53,54,61,63,69,96,117,133,138,153,160,168,170,184],the:[16,18,39,42,45,47,49,50,51,53,54,60,61,63,69,79,89,96,103,114,117,133,135,137,138,139,143,153,157,158,160,168,170,177,181,184,190,204],theater:207,theatre:207,their:168,them:[53,168],then:[69,138],there:[75,133,157,184,190],therubyracer:12,thesaurus:117,these:[51,133,153,168],they:[160,168,170],think:[168,170,171],thread:[],threads:[89,138,160],threasd:133,three:[170,198,201],threshold:[33,37,59,60,91],through:135,thus:[137,139],tid:57,time:[33,37,39,40,41,100,103,104,108,114,120,121,134,138,150,160,174,175,177,182,195,198,204],timeout:[45,60],times:45,timestamp:[100,104,108],timeuot:45,tips:[],title:[12,40,41,93,96,154,168,170,171,198,199,200,201,203,205],titles:[157,158],tiwawan:33,tld:199,tmp:[6,7,12,40,86,88,120,122,124,133,138,166,167,186,192,201,205],to:[],tobby:151,todo:[],token:[],tokenbigram:[],tokenbigramignoreblank:[],tokenbigramignoreblanksplitalpha:180,tokenbigramignoreblanksplitalphadigit:180,tokenbigramignoreblanksplitsymbol:[],tokenbigramignoreblanksplitsymbolalpha:[],tokenbigramignoreblanksplitsymbolalphadigit:[],tokenbigramsplitsymbol:[],tokenbigramsplitsymbolalpha:[],tokenbigramsplitsymbolalphadigit:[],tokenbigramsplitxxx:180,tokenbigrm:84,tokenbigrma:127,tokendelimit:[],tokendelimitnull:[],tokenfilterstem:[],tokenfilterstopword:[],tokenize:[],tokenizer:[],tokenizers:[127,128],tokenkytea:39,tokenmecab:[],tokenregexp:[],tokens:127,tokentrigram:[],tokenunigram:[],tokyogeopoint:[37,54,144,145,182,208],tom:151,tomita:35,tomo:200,tomoatsu:35,tomotaka:37,tomygx:33,too:[33,192,203],tood:69,tool:21,top:[37,54,145],tortoisegit:8,totable:84,total:[82,134],touch:51,toybox:198,tracker:19,transfer:[0,184,190,192],transitional:190,translate:[17,18],translation:17,travel:204,travi:40,travis:[],tried:204,tries:45,tritonn:[103,117,157,158],truncate:[],truncated:40,truncation:[37,129],trust:12,trusty:[12,30,41],ts:180,tsv:[],turn:135,tutorial:69,tvsec:119,tweet:159,tweets:159,twiter:39,two:[139,160],tx:180,txt:[16,17],type:[47,49,50,54,58,61,63,66,85,86,88,106,120,121,134,138,168,170,171,174,175,177,198,199,200,201,203,204,206,208],types:[106,120,174,175,177],typo:[37,41],ubuntu:[],ueno:[35,36,39],ui:117,uid:12,uint:[35,39,40,41,65,75,78,84,86,88,92,94,103,117,121,122,124,129,141,142,154,157,158,159,161,167,179,181,182,195,199,200,201,203,205,206,207,208],ul:127,ull:127,ultra:200,umask:41,umemoto:37,unchanged:69,under:[135,138,139],unicode:[33,161],unicorn:33,uninstall:39,unique:[114,138],united:92,universe:30,unix:[3,5],unknown:192,unlink:53,unlock:60,unlocked:69,unlocks:69,unmanaged:82,unmaps:51,unpatched:42,unsafe:51,unsigned:[41,46,47,53,56,60,61,63,64,66,69],unsplit:11,unsupported:192,until:[45,69],up:164,update:[],updated:[17,42,195],updates:[18,153],updating:45,upload:12,uptime:[34,119,135,164,192,201,205],uri:[135,136],url:[12,37,41,93,136,205],usa:199,usage:133,use:[],used:[49,50,51,68,79,81,84,96,129,133,138,139,160,168,184,204],useful:[47,133,168,203],useless:51,user:[61,79,134,135,138,141,147,151,153,154,158,181,200],username:[31,200],users:[],uses:[49,51,139,160,168,170,171],using:[42,49,177,203],usr:[14,27,28,109,110,113,133,135],usually:139,utc:158,utf:[28,35,39,40,42,52,133,138,158,164,180],utopic:33,uubntu:14,uuuuuu:158,uzulla:37,v1:11,v2:11,vagrant:12,valgrind:14,valid:177,value:[],valuebuf:58,valuen:149,values:[47,49,60,95,133],variable:69,variables:69,variety:200,vars:[61,69],varying:69,vector:[],version:[12,37,42,48,50,119,134,135,164,172,192,201,205],versions:190,vervet:[30,33],very:[78,95,103,117,146,147,153,157,158,168],via:177,video:200,view:138,virtualbox:12,visual:[8,31,33,37,39,40,41],vivid:[12,30,33],vm:[],vmstat:196,vmware:12,voiced:161,vojtovich:41,waits:[45,69],wanabe:40,want:[133,138,184],wareohji:39,warning:[97,98,133,135,160,167,170],warp:41,watch:12,way:139,wc:[24,25,26,30],we:184,weakness:153,web:[12,28,34,117,120,157,175,177],webclips:148,weight:[39,47,75,117,168,198],welcome:[103,117,157,158,204],well:153,wget:[24,25,26,28,29,30],wgs:[37,54,143,144,145,182,198,199,200,204,205,208],wheezy:[],when:[18,47,51,133,138,184],whether:[51,60,129],which:[69,133,138,139],whombx:40,wibowo:40,wiedenroth:41,wiki:135,wikipedia:182,will:[60,69,133,170,184],win:[8,31],windows:[],wing:[39,40],without:[135,153,177],wo:180,word:[39,117,157,158],words:[158,168],work:160,worker:[],works:[69,160],world:180,write:[14,18,38,96,102,112,117,133],written:[18,129],x6:12,xcode:27,xml:[],xt:[127,180],xvzf:[24,25,26,27,28,29,30],xxx:[33,40,133,158],xxxxx:12,yamaguchi:37,yappo:[40,41,42],year:160,yes:[14,33,93,94,102,117,120,132],yet:[168,170],yito:[39,40],yoji:37,yoku:[40,41],york:[143,204],yoshioka:39,you:[17,18,47,49,50,51,53,69,79,96,129,133,135,137,138,139,168,170,171,177,184],your:[17,18,21,37,96,133],yuki:37,yum:[12,18,24,26,39],yuya:33,yyyy:[158,160],yyyymm:172,yyyymmdd:[100,102,103,105,172],zenigata:200,zeromq:28,zip:[],zlib:[25,28,30,35,37,39,40,41,47,85,192],zsh:[12,28],zunda:37,zxvf:12},titles:["1. Groonga\u306e\u7279\u5fb4","6. \u30af\u30e9\u30a4\u30a2\u30f3\u30c8","3. \u30b3\u30df\u30e5\u30cb\u30c6\u30a3","12. Groonga\u3078\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","12.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","12.3.2. \u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5","12.3.2.1. GNU Autotools\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5","12.3.2.2. GNU/Linux\u307e\u305f\u306fUnix\u4e0a\u3067CMake\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5","12.3.2.3. Windows\u4e0a\u3067CMake\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5","12.3.3. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","12.3.4. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","12.3.5. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","12.3.7. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","12.3.1. \u30ea\u30dd\u30b8\u30c8\u30ea","12.3.8. \u30c6\u30b9\u30c8\u65b9\u6cd5","12.2. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u95a2\u9023\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","12.2.3. C API","12.2.2. \u56fd\u969b\u5316","12.2.1. Introduction","12.1. \u30d0\u30b0\u30ec\u30dd\u30fc\u30c8\u306e\u9001\u308a\u65b9","11. \u958b\u767a","11.1. Travis CI","Groonga \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8","2. \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb","2.5. CentOS","2.3. Debian GNU/Linux","2.6. Fedora","2.2. Mac OS X","2.8. \u305d\u306e\u4ed6","2.7. Oracle Solaris","2.4. Ubuntu","2.1. Windows","9. \u5236\u9650\u4e8b\u9805","\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","1.2.9\u30ea\u30ea\u30fc\u30b9 - 2011-12-29","1.3.0\u30ea\u30ea\u30fc\u30b9 - 2012-01-29","2.1.2\u30ea\u30ea\u30fc\u30b9 - 2013-01-29","3.1.2\u30ea\u30ea\u30fc\u30b9 - 2014-01-29","4.1.1\u30ea\u30ea\u30fc\u30b9 - 2015-01-29","News in Senna period","7. \u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb","7.21. API","7.21.2. \u5168\u4f53\u8a2d\u5b9a","7.21.4. <code class=\"docutils literal\"><span class=\"pre\">grn_cache</span></code>","7.21.5. <code class=\"docutils literal\"><span class=\"pre\">grn_column</span></code>","7.21.6. <code class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></code>","7.21.7. <code class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></code>","7.21.8. <code class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></code>","7.21.9. <code class=\"docutils literal\"><span class=\"pre\">grn_db</span></code>","7.21.10. <code class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></code>","7.21.11. grn_expr","7.21.12. <code class=\"docutils literal\"><span class=\"pre\">grn_geo</span></code>","7.21.13. <code class=\"docutils literal\"><span class=\"pre\">grn_hook</span></code>","7.21.14. <code class=\"docutils literal\"><span class=\"pre\">grn_ii</span></code>","7.21.15. <code class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></code>","7.21.16. <code class=\"docutils literal\"><span class=\"pre\">grn_info</span></code>","7.21.17. <code class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></code>","7.21.18. <code class=\"docutils literal\"><span class=\"pre\">grn_obj</span></code>","7.21.19. <code class=\"docutils literal\"><span class=\"pre\">grn_proc</span></code>","7.21.20. <code class=\"docutils literal\"><span class=\"pre\">grn_search</span></code>","7.21.21. <code class=\"docutils literal\"><span class=\"pre\">grn_table</span></code>","7.21.22. <code class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></code>","7.21.23. <code class=\"docutils literal\"><span class=\"pre\">grn_thread_*</span></code>","7.21.24. <code class=\"docutils literal\"><span class=\"pre\">grn_type</span></code>","7.21.25. <code class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></code>","7.21.1. \u6982\u8981","7.21.3. Plugin","Cast","7.6. \u30ab\u30e9\u30e0","7.6.4. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0","7.6.3. \u64ec\u4f3c\u30ab\u30e9\u30e0","7.6.1. \u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0","7.6.2. \u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0","7.3. \u30b3\u30de\u30f3\u30c9","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","7.3.2. \u51fa\u529b\u5f62\u5f0f","7.3.3. \u30ea\u30af\u30a8\u30b9\u30c8ID","7.3.4. \u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9","7.3.5. <code class=\"docutils literal\"><span class=\"pre\">cache_limit</span></code>","7.3.6. <code class=\"docutils literal\"><span class=\"pre\">check</span></code>","7.3.7. <code class=\"docutils literal\"><span class=\"pre\">clearlock</span></code>","7.3.8. <code class=\"docutils literal\"><span class=\"pre\">column_copy</span></code>","7.3.9. <code class=\"docutils literal\"><span class=\"pre\">column_create</span></code>","7.3.10. <code class=\"docutils literal\"><span class=\"pre\">column_list</span></code>","7.3.11. <code class=\"docutils literal\"><span class=\"pre\">column_remove</span></code>","7.3.12. <code class=\"docutils literal\"><span class=\"pre\">column_rename</span></code>","7.3.13. <code class=\"docutils literal\"><span class=\"pre\">database_unmap</span></code>","7.3.14. <code class=\"docutils literal\"><span class=\"pre\">define_selector</span></code>","7.3.15. <code class=\"docutils literal\"><span class=\"pre\">defrag</span></code>","7.3.16. <code class=\"docutils literal\"><span class=\"pre\">delete</span></code>","7.3.17. <code class=\"docutils literal\"><span class=\"pre\">dump</span></code>","7.3.18. <code class=\"docutils literal\"><span class=\"pre\">io_flush</span></code>","7.3.19. <code class=\"docutils literal\"><span class=\"pre\">load</span></code>","7.3.20. <code class=\"docutils literal\"><span class=\"pre\">lock_clear</span></code>","7.3.21. <code class=\"docutils literal\"><span class=\"pre\">log_level</span></code>","7.3.22. <code class=\"docutils literal\"><span class=\"pre\">log_put</span></code>","7.3.23. <code class=\"docutils literal\"><span class=\"pre\">log_reopen</span></code>","7.3.24. <code class=\"docutils literal\"><span class=\"pre\">logical_count</span></code>","7.3.25. <code class=\"docutils literal\"><span class=\"pre\">logical_parameters</span></code>","7.3.26. <code class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></code>","7.3.27. <code class=\"docutils literal\"><span class=\"pre\">logical_select</span></code>","7.3.28. <code class=\"docutils literal\"><span class=\"pre\">logical_shard_list</span></code>","7.3.29. <code class=\"docutils literal\"><span class=\"pre\">logical_table_remove</span></code>","7.3.30. <code class=\"docutils literal\"><span class=\"pre\">normalize</span></code>","7.3.31. <code class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></code>","7.3.32. <code class=\"docutils literal\"><span class=\"pre\">object_exist</span></code>","7.3.33. <code class=\"docutils literal\"><span class=\"pre\">plugin_register</span></code>","7.3.34. <code class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></code>","7.3.35. <code class=\"docutils literal\"><span class=\"pre\">quit</span></code>","7.3.36. <code class=\"docutils literal\"><span class=\"pre\">range_filter</span></code>","7.3.37. <code class=\"docutils literal\"><span class=\"pre\">register</span></code>","7.3.38. <code class=\"docutils literal\"><span class=\"pre\">request_cancel</span></code>","7.3.39. <code class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></code>","7.3.40. <code class=\"docutils literal\"><span class=\"pre\">ruby_load</span></code>","7.3.41. <code class=\"docutils literal\"><span class=\"pre\">select</span></code>","7.3.42. <code class=\"docutils literal\"><span class=\"pre\">shutdown</span></code>","7.3.43. <code class=\"docutils literal\"><span class=\"pre\">status</span></code>","7.3.44. <code class=\"docutils literal\"><span class=\"pre\">suggest</span></code>","7.3.45. <code class=\"docutils literal\"><span class=\"pre\">table_create</span></code>","7.3.46. <code class=\"docutils literal\"><span class=\"pre\">table_list</span></code>","7.3.47. <code class=\"docutils literal\"><span class=\"pre\">table_remove</span></code>","7.3.48. <code class=\"docutils literal\"><span class=\"pre\">table_rename</span></code>","7.3.49. <code class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></code>","7.3.50. <code class=\"docutils literal\"><span class=\"pre\">thread_limit</span></code>","7.3.51. <code class=\"docutils literal\"><span class=\"pre\">tokenize</span></code>","7.3.52. <code class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></code>","7.3.53. <code class=\"docutils literal\"><span class=\"pre\">truncate</span></code>","7.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","7.1.1. <code class=\"docutils literal\"><span class=\"pre\">grndb</span></code>","7.1.2. grnslap","7.1.3. <code class=\"docutils literal\"><span class=\"pre\">groonga</span></code> executable file","7.1.4. groonga-benchmark","7.1.5. groonga-httpd","7.1.6. Groonga HTTP\u30b5\u30fc\u30d0\u30fc","7.1.7. groonga-suggest-create-dataset","7.1.8. groonga-suggest-httpd","7.1.9. groonga-suggest-learner","7.14. \u95a2\u6570","7.14.1. between","7.14.2. edit_distance","7.14.3. geo_distance","7.14.4. geo_in_circle","7.14.5. geo_in_rectangle","7.14.6. highlight_full","7.14.7. highlight_html","7.14.8. html_untag","7.14.9. in_values","7.14.10. now","7.14.11. query","7.14.12. rand","7.14.13. snippet_html","7.14.14. sub_filter","7.14.15. vector_size","7.12. grn_expr","7.12.1. \u30af\u30a8\u30ea\u30fc\u69cb\u6587","7.12.2. \u30b9\u30af\u30ea\u30d7\u30c8\u69cb\u6587","7.17. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9","7.19. Log","7.7. \u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc","7.15. \u64cd\u4f5c\u65b9\u6cd5","7.15.1. \u4f4d\u7f6e\u60c5\u5831\u691c\u7d22","7.2. \u51fa\u529b","7.10. \u30af\u30a8\u30ea\u30fc\u5c55\u958b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u4e00\u89a7","7.10.1. QueryExpanderTSV","7.13. \u6b63\u898f\u8868\u73fe","7.11. Scorer","7.11.3.1. <code class=\"docutils literal\"><span class=\"pre\">scorer_tf_at_most</span></code>","7.11.3.2. <code class=\"docutils literal\"><span class=\"pre\">scorer_tf_idf</span></code>","&lt;no title&gt;","7.18. \u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0","7.16. \u30b5\u30b8\u30a7\u30b9\u30c8","7.16.2. \u88dc\u5b8c","7.16.3. \u88dc\u6b63","7.16.1. \u306f\u3058\u3081\u306b","7.16.4. \u63d0\u6848","7.5. \u30c6\u30fc\u30d6\u30eb","7.9. \u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc","7.8. \u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc","7.20. \u30c1\u30e5\u30fc\u30cb\u30f3\u30b0","7.4. \u30c7\u30fc\u30bf\u578b","5. \u30b5\u30fc\u30d0\u30fc","5.3. GQTP","5.2. HTTP","5.2.1. \u6bd4\u8f03","5.2.2. groonga","5.2.3. groonga-httpd","5.4. Memcached\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb","5.1. \u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8","8. \u4ed5\u69d8","8.1. GQTP","8.2. \u691c\u7d22","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","10.2. mmap Cannot allocate memory\u30a8\u30e9\u30fc\u3092\u56de\u907f\u3059\u308b\u306b\u306f","4. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb","4.3. \u3044\u308d\u3044\u308d\u306a\u30c7\u30fc\u30bf\u306e\u4fdd\u5b58","4.5. \u30c9\u30ea\u30eb\u30c0\u30a6\u30f3","4.6. \u30bf\u30b0\u691c\u7d22\u30fb\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d","4.1. \u57fa\u672c\u7684\u306a\u64cd\u4f5c","4.9. \u5168\u6587\u691c\u7d22\u7528\u306e\u8a9e\u5f59\u8868\u306e\u4f5c\u6210","4.7. match_columns\u30d1\u30e9\u30e1\u30fc\u30bf","4.10. \u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210","4.2. \u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9","4.8. \u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22","4.11. \u30af\u30a8\u30ea\u62e1\u5f35","4.4. \u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6"],titleterms:{"()":11,"(geopoint":204,"(v":11,"-benchmark":134,"-command":77,"-create":137,"-dataset":137,"-default":28,"-document":18,"-encoding":28,"-escalation":28,"-files":12,"-gqtp":190,"-help":28,"-http":190,"-httpd":[135,138,139,188,190],"-latest":12,"-learner":139,"-localstatedir":28,"-log":28,"-lz4":28,"-match":28,"-message":28,"-munin":28,"-pack":28,"-package":28,"-path":28,"-platform":28,"-plugins":28,"-po":12,"-prefix":28,"-release":12,"-server":190,"-suggest":[137,138,139],"-threshold":28,"-version":77,"-with":28,"-zlib":28,".max":181,".maxfileperproc":181,".overcommit":181,".po":17,".po\u30d5\u30a1\u30a4\u30eb":17,"/linux":[7,25],"=encoding":28,"=message":28,"=number":28,"=path":28,"=platform":28,"[$":[103,117],"\u3042\u3052\u308b":195,"\u3042\u308a":[157,158],"\u3042\u308b":204,"\u3044\u304f":10,"\u3044\u308b":163,"\u3044\u308d\u3044\u308d":198,"\u3046\u307e\u304f":10,"\u304a\u304f":10,"\u304a\u3055\u3089\u3044":10,"\u304a\u6c17":204,"\u304a\u77e5\u3089":[33,34,35,36],"\u304b\u3089":[6,7,8,10,24,25,26,27,28,30,31],"\u304c\u3063":203,"\u3053\u3061\u3089":10,"\u3053\u3068":12,"\u3054\u3068":203,"\u3055\u307e\u3056\u307e\u306a":208,"\u3059\u308b":[5,6,7,8,10,12,14,19,75,135,138,139,174,175,177,195,196,199,203],"\u305d\u306e":[28,167],"\u305f\u3044":12,"\u305f\u3081":[10,11,103,117],"\u3060\u3051":[10,75],"\u3065\u3051":77,"\u3066\u308b":204,"\u3067\u304d":182,"\u3067\u304d\u308b":[10,11],"\u3068\u3057\u3066":182,"\u3068\u308a":10,"\u306a\u3044":[10,182],"\u306a\u3057":[158,186],"\u306a\u306b":180,"\u306b\u3088\u308b":[199,203,206],"\u306b\u5bfe\u3059\u308b":203,"\u306b\u95a2\u3059\u308b":182,"\u306e\u306b":195,"\u306e\u307f":[12,14],"\u306f\u3058\u3081":176,"\u3078\u3068":10,"\u307e\u305f":[7,203],"\u307e\u305f\u3050":203,"\u307e\u3068\u3081":12,"\u3084\u308a":10,"\u3084\u308b":12,"\u3088\u3046":[174,175,177],"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":186,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":186,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"\u30a2\u30f3\u30ab\u30fc":167,"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":12,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":9,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":31,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[6,7,8,14,18,23,166],"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[32,159,167,200,203],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[72,201],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":121,"\u30a4\u30f3\u30dd\u30fc\u30c8":12,"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":12,"\u30a8\u30b9\u30b1\u30fc\u30d7":[157,167],"\u30a8\u30e9\u30fc":[78,196],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":165,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":158,"\u30aa\u30d7\u30b7\u30e7\u30f3":[132,134,137],"\u30ab\u30b9\u30b1\u30fc\u30c9":92,"\u30ab\u30d0\u30ec\u30c3\u30b8":14,"\u30ab\u30e9\u30e0":[32,71,73,84,143,199,201,203],"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":203,"\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2":0,"\u30ad\u30e3\u30c3\u30b7\u30e5":[102,117,135],"\u30ad\u30fc\u30ef\u30fc\u30c9":[195,204],"\u30af\u30a8\u30ea":[0,11,207],"\u30af\u30a8\u30ea\u30fc":[135,157,165],"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":135,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":1,"\u30af\u30e9\u30b9":167,"\u30b0\u30eb\u30fc\u30d7":[157,158,167],"\u30b3\u30de\u30f3\u30c9":[76,131,133,136,172,201,205],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[77,186],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":134,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[133,138,164],"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":2,"\u30b3\u30e1\u30f3\u30c8":204,"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[3,15],"\u30b5\u30b8\u30a7\u30b9\u30c8":173,"\u30b5\u30f3\u30d7\u30eb":[132,134],"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[157,158],"\u30b5\u30fc\u30d0":[0,192,205],"\u30b5\u30fc\u30d0\u30fc":[136,183,190],"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":190,"\u30b7\u30b9\u30c6\u30e0":[19,204],"\u30b7\u30d5\u30c8":158,"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0":172,"\u30b8\u30aa\u30b5\u30fc\u30c1":200,"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":74,"\u30b9\u30af\u30ea\u30d7\u30c8":[12,158],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":134,"\u30b9\u30b3\u30a2\u30e9\u30fc":168,"\u30b9\u30b3\u30a2\u30fc":117,"\u30b9\u30bf\u30a4\u30eb":117,"\u30b9\u30c8\u30ec\u30fc\u30b8":0,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":0,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":205,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":158,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":[6,7,8,18],"\u30bd\u30fc\u30b9":[24,25,26,27,28,30,31],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":12,"\u30bd\u30fc\u30c8":[199,208],"\u30bf\u30b0":200,"\u30bf\u30b0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":121,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":186,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":12,"\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8":[6,7,8],"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":197,"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0":181,"\u30c4\u30a4\u30fc\u30c8":10,"\u30c4\u30fc\u30eb":[28,135,205],"\u30c6\u30b9\u30c8":14,"\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":14,"\u30c6\u30fc\u30d6\u30eb":[32,84,121,139,151,178,182,198,201,203,204],"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":135,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":12,"\u30c7\u30d0\u30c3\u30ac":14,"\u30c7\u30fc\u30bf":[121,174,177,182,198,201,204],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[186,201],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":135,"\u30c7\u30fc\u30e2\u30f3":192,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[134,194],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":0,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[180,195],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":180,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":179,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[12,15,22],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[103,117,199],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":161,"\u30ce\u30fc\u30de\u30eb\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":75,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":204,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":189,"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":19,"\u30d0\u30fc\u30b8\u30e7\u30f3":[12,34,35,36,77],"\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba":12,"\u30d1\u30c3\u30b1\u30fc\u30b8":12,"\u30d1\u30c3\u30c1":17,"\u30d1\u30c8\u30ea\u30b7\u30a2":206,"\u30d1\u30e9\u30e1\u30fc\u30bf":[77,203],"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[103,117],"\u30d3\u30c3\u30c8":158,"\u30d3\u30eb\u30c9":[5,6,7,8,12,24,25,26,27,28,30,31],"\u30d5\u30a1\u30a4\u30eb":[11,12,17,18,130,166,181,186],"\u30d5\u30a9\u30ed\u30fc":204,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[117,160,166],"\u30d5\u30ec\u30fc\u30ba":157,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":205,"\u30d6\u30ed\u30b0":12,"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":186,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":12,"\u30d7\u30ed\u30bb\u30b9":181,"\u30d7\u30ed\u30c8\u30b3\u30eb":192,"\u30d8\u30c3\u30c0\u30fc":192,"\u30d9\u30af\u30bf\u30fc":182,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[75,198],"\u30da\u30fc\u30b8\u30f3\u30b0":117,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":204,"\u30de\u30c3\u30c1":158,"\u30de\u30c3\u30c1\u30ab\u30e9\u30e0":157,"\u30e1\u30e2\u30ea":181,"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[2,19],"\u30e2\u30b8\u30e5\u30fc\u30eb":135,"\u30e6\u30fc\u30b6\u30fc":[10,204],"\u30e6\u30fc\u30b6\u30fcid":204,"\u30e9\u30a4\u30d6\u30e9\u30ea":[0,28],"\u30ea\u30af\u30a8\u30b9\u30c8id":79,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":80,"\u30ea\u30c6\u30e9\u30eb":158,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7":135,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":43,"\u30ea\u30dd\u30b8\u30c8\u30ea":[13,17],"\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc":[5,6,7,8],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":205,"\u30ea\u30ea\u30fc\u30b9":[12,33,34,35,36,37,38,39,40,41],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":12,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":12,"\u30eb\u30fc\u30eb":172,"\u30ec\u30b3\u30fc\u30c9":[117,201],"\u30ec\u30b3\u30fc\u30c9id":178,"\u30ed\u30b0":99,"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":0,"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":99,"\u30ed\u30fc\u30c9":[75,201,204],"\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":14,"\u4e00\u6642":178,"\u4e00\u6642\u30c6\u30fc\u30d6\u30eb":[],"\u4e00\u81f4":[193,206],"\u4e00\u81f4rk":[],"\u4e00\u89a7":[80,131,161,165,172,204],"\u4e0a\u9650":32,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":14,"\u4e0d\u7b49\u4fa1":[157,158],"\u4e26\u3079":201,"\u4e26\u5217":12,"\u4e3b\u30ad\u30fc":[182,206],"\u4e57\u7b97":158,"\u4e8b\u9805":[32,134,182],"\u4ed5\u65b9":17,"\u4ed5\u69d8":191,"\u4ed8\u304d":[158,200],"\u4ed8\u4e0e":203,"\u4ee3\u5165":158,"\u4ee3\u5165\u5f0f":157,"\u4ee5\u4e0a":[157,158],"\u4ee5\u4e0b":157,"\u4ee5\u4e0b\u6f14":158,"\u4f4d\u7f6e":[0,77,143,163,204,208],"\u4f5c\u308a\u65b9":75,"\u4f5c\u308b":6,"\u4f5c\u6210":[12,121,201,202,204],"\u4f5c\u696d":12,"\u4f7f\u3044":193,"\u4f7f\u3044\u65b9":[72,74,75,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,134,135,138,139,141,143,146,147,148,149,151,153,154,155,159,164,166,167,168,170,174,175,177],"\u4f7f\u3046":[135,143],"\u4f7f\u3063":[6,7,8],"\u4f7f\u7528":181,"\u4f8b\u3048":10,"\u4f9d\u5b58":28,"\u4fdd\u5b58":[121,198],"\u4fee\u6b63":[33,34,35,36,37,39,40,41,42],"\u5165\u308a":204,"\u5165\u6f14":158,"\u5168\u4f53":45,"\u5168\u6587":[0,195,201,203,208],"\u5168\u6587\u691c":[201,202],"\u5168\u6587\u691c\u7d22":157,"\u5171\u6709":0,"\u5171\u8d77":[174,175,177],"\u518d\u8d77\u52d5":190,"\u51fa\u529b":[17,78,103,117,164,201],"\u5206\u3051":193,"\u5229\u7528":[135,179,208],"\u5236\u5fa1":158,"\u5236\u9650":[32,75,134,166,178,182,199],"\u524a\u9664":92,"\u524d\u63d0":12,"\u524d\u65b9":206,"\u524d\u65b9\u4e00\u81f4":[157,158,174],"\u5270\u4f59":158,"\u52a0\u7b97":158,"\u52d5\u4f5c":[12,14,174,175,177],"\u52d5\u7684":159,"\u5354\u529b":10,"\u5358\u8a9e":158,"\u5373\u6642":0,"\u539f\u56e0":195,"\u53c2\u7167":[0,192,198,200],"\u53c2\u7167\u578b":75,"\u53c2\u8003":[6,7,8,78,79,80,81,83,86,90,92,95,97,98,99,104,106,107,109,110,112,113,114,115,116,117,120,121,125,127,128,137,146,147,151,153,154,156,161,166,170,178,179],"\u53d6\u5f97":[12,201],"\u53e4\u3044":33,"\u53ef\u80fd":[0,84,89,93,94,100,101,102,103,104,105,106,125,126,127,135,138,143,151,179],"\u540c\u3058":195,"\u540d\u524d":[73,132,134,136,137,142,144,145,150,152,182],"\u5411\u3051":[4,12],"\u5426\u5b9a":[157,158],"\u547c\u3073\u51fa\u3057":158,"\u547d\u4ee4":134,"\u548c\u4ee3":158,"\u548c\u6f14":158,"\u56de\u907f":196,"\u56fd\u969b\u5316":17,"\u5727\u7e2e":186,"\u57fa\u672c":[158,201],"\u5831\u544a":19,"\u5834\u5408":[12,78,203],"\u5834\u6240":[10,166],"\u5909\u66f4":[35,84,186,195],"\u5909\u66f4\u70b9":12,"\u5927\u306a\u308a":[157,158],"\u5b66\u7fd2":[138,174,175,176,177],"\u5b8c\u5168":193,"\u5b9f\u4f8b":11,"\u5b9f\u73fe":11,"\u5b9f\u884c":[6,7,8,11,12,14,130,134,135],"\u5b9f\u9a13":37,"\u5bc6\u9375":12,"\u5bfe\u5fdc":[10,163,186],"\u5bfe\u7b56":[195,196],"\u5c0f\u306a\u308a":[157,158],"\u5c0f\u6570":158,"\u5c55\u958b":165,"\u5dee\u6f14":158,"\u5ea7\u6a19\u5024":158,"\u5f15\u6570":[81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,111,114,115,116,117,118,119,120,121,122,123,124,125,126,127,129,132,133,134,138,139,141,142,143,144,145,146,147,148,149,151,152,154,155,181],"\u5f62\u5f0f":[78,95],"\u5f8c\u65b9":206,"\u5f8c\u65b9\u4e00\u81f4":[157,158],"\u5fc5\u8981":[6,7,8,18,148],"\u5fc5\u9808":[84,86,88,89,94,100,101,102,103,104,105,106,108,114,117,124,125,126,127,129,138,143,151],"\u6027\u80fd":[135,186],"\u60c5\u5831":[0,4,10,14,163,204,208],"\u611f\u8b1d":[33,34,35,36,37,38,39,40,41],"\u6210\u529f":78,"\u6210\u679c":17,"\u623b\u308a\u5024":[81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,136,138,141,143,146,147,148,149,151,153,154,155],"\u624b\u9806":12,"\u6295\u7a3f":204,"\u62bd\u51fa":[158,177],"\u62e1\u5f35":207,"\u6307\u5b9a":[12,77,143,157,182,201,203],"\u6307\u91dd":10,"\u6319\u52d5":193,"\u6392\u4ed6":158,"\u63a5\u7d9a":192,"\u63d0\u4f9b":10,"\u63d0\u6848":[138,176,177],"\u64cd\u4f5c":[162,201],"\u64ec\u4f3c":73,"\u6539\u826f":[33,34,35,36,37,38,39,40,41,42],"\u6570\u5024":198,"\u6574\u6570":158,"\u6587\u5b57":167,"\u6587\u5b57\u5217":[158,198],"\u6587\u66f8":[158,175],"\u6587\u6cd5":208,"\u65b0\u3057\u3044":17,"\u65b0\u898f":12,"\u65b9\u6cd5":[3,5,6,7,8,12,14,15,17,75,77,84,159,162,174,175,177,195,196],"\u65e5\u6642":198,"\u660e\u793a":12,"\u660e\u793a\u7684":143,"\u6642\u9593":[158,204],"\u66f4\u65b0":[0,12,17,174],"\u66f8\u304d":193,"\u66f8\u5f0f":[132,134,135,136,138,139,142,144,145,150,152,201],"\u66ff\u3048":201,"\u6700\u5927":181,"\u6761\u4ef6":[12,117,148,157,208],"\u6761\u4ef6\u5f0f":157,"\u683c\u7d0d":182,"\u691c\u51fa":14,"\u691c\u7d22":[0,75,103,117,121,157,158,163,174,175,177,193,195,200,201,203,204,206,207,208],"\u691c\u7d22\u4f8b":11,"\u6982\u8981":[0,45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,72,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,135,136,138,139,141,143,146,147,148,149,151,153,154,155,161,166,167,168,169,170,172,178,179,180,181],"\u69cb\u6587":[81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,141,143,146,147,148,149,151,153,154,155,157,158,167],"\u69cb\u7bc9":[14,159],"\u69d8\u3005":14,"\u6a5f\u80fd":163,"\u6b63\u898f":[157,158,167],"\u6bd4\u8f03":[158,186],"\u6c38\u7d9a":178,"\u6d41\u308c":17,"\u6d6e\u52d5":158,"\u6e1b\u7b97":158,"\u6e96\u5099":[12,207],"\u6f14\u7b97\u5b50":158,"\u70b9\u6570":158,"\u7279\u5b9a":[12,14],"\u7279\u5fb4":[0,178],"\u7279\u6709":135,"\u7279\u6b8a":134,"\u72ec\u81ea":158,"\u7406\u7531":10,"\u74b0\u5883":[12,14],"\u751f\u6210":[12,17,18],"\u7528\u3044":[99,208],"\u7528\u79d8":12,"\u7528\u8a9e\u96c6":172,"\u7570\u306a\u308b":195,"\u767b\u9332":19,"\u7701\u7565":[84,89,93,94,100,101,102,103,104,105,106,125,126,127,138,143,151],"\u771f\u507d\u5024":[158,198],"\u77e5\u308a":12,"\u78ba\u8a8d":[12,17],"\u7a2e\u985e":198,"\u7a4d\u4ee3":158,"\u7a4d\u6f14":158,"\u7b26\u53f7":158,"\u7b49\u4fa1":[157,158],"\u7b97\u5b50":158,"\u7b97\u8853":158,"\u7ba1\u7406":[135,205],"\u7bc4\u56f2":[121,201],"\u7c21\u5358":[103,117],"\u7d22\u5f15":0,"\u7d22\u7528":[201,202],"\u7d42\u4e86":[135,190,192],"\u7d44\u307f\u8fbc\u307f":[133,161,168,180],"\u7d44\u8fbc\u578b":182,"\u7d4c\u5ea6":0,"\u7d4c\u7def\u5ea6":198,"\u7d50\u5408\u5f0f":157,"\u7d50\u679c":[134,195,199,201],"\u7d5e\u8fbc":208,"\u7de8\u96c6":17,"\u7def\u5ea6":0,"\u7f6e\u63db":151,"\u7f72\u540d":12,"\u7ffb\u8a33":[12,17],"\u8868\u73fe":[11,157,158,167],"\u8868\u793a":201,"\u88dc\u5b8c":[174,176],"\u88dc\u6b63":[175,176],"\u8907\u6570":[186,199,203],"\u89e3\u6790":14,"\u8a00\u8a9e":17,"\u8a2d\u5b9a":[12,21,45,84,135,138,186],"\u8a8d\u8a3c":186,"\u8a98\u5c0e":10,"\u8a9e\u5f59":[201,202],"\u8a9e\u5f59\u8868":121,"\u8aac\u660e":[73,132,134,142,144,145,150,152,182],"\u8aad\u307f":174,"\u8ab2\u984c":19,"\u8ad6\u7406":[157,158],"\u8ad6\u7406\u548c":157,"\u8ad6\u7406\u7a4d":157,"\u8d77\u52d5":[190,192,205],"\u8ee2\u7f6e":0,"\u8fd1\u508d":158,"\u8fd4\u5024":[142,144,145,150,152],"\u8ffd\u52a0":[12,17,161],"\u8ffd\u8de1":19,"\u9001\u308a\u65b9":[17,19],"\u9001\u4fe1":205,"\u9006\u5f15\u304d":200,"\u901a\u4fe1":9,"\u9032\u3081":10,"\u904e\u53bb":10,"\u9055\u3044":103,"\u9069\u7528":75,"\u9078\u629e":167,"\u90e8\u5206":[],"\u90e8\u5206\u4e00\u81f4":193,"\u914d\u5217":158,"\u91cd\u307f":[75,203],"\u91cd\u307f\u4ed8\u304d":75,"\u91cf\u6307\u5b9a\u5b50":167,"\u958b\u3051\u308b":181,"\u958b\u767a":[4,10,20],"\u95a2\u4fc2":[28,103,117,200],"\u95a2\u4fc2\u5f0f":11,"\u95a2\u6570":[14,140,158],"\u95a2\u9023":[15,102,103,117,135,139,203],"\u95be\u5024":195,"\u9664\u7b97":158,"\u96c6\u8a08":0,"\u9759\u7684":[14,159],"\u975e\u308f\u304b\u3061":193,"\u985e\u4f3c":[158,175],"\u9ad8\u5ea6":[103,117],"\uff08personal":30,"_*":65,"_api":11,"_at":169,"_auto":135,"_base":135,"_border":[100,102,103,105,141],"_cache":[46,135],"_calc":[103,117],"_cancel":114,"_circle":144,"_clear":96,"_column":47,"_columns":[102,103,117,151,203],"_command":48,"_content":49,"_copy":84,"_count":[100,181],"_create":[85,121,135],"_ctx":50,"_cursor":[57,64],"_dat":178,"_data":67,"_database":135,"_db":51,"_distance":[142,143],"_encoding":52,"_equal":11,"_escalation":[59,103,117],"_escape":146,"_eval":115,"_exist":108,"_expander":[103,117,151],"_expansion":117,"_expr":[11,53,156],"_filter":[102,112,154],"_filters":[121,127],"_flags":[103,117],"_flush":94,"_full":146,"_geo":54,"_hash":178,"_hook":55,"_html":[146,147,153],"_idf":170,"_ii":56,"_in":[144,145],"_index":[57,101,102],"_indexes":93,"_info":58,"_install":28,"_key":[100,102,103,105,178],"_level":[97,135],"_limit":[81,103,117,126,135],"_list":[86,104,107,122,128],"_load":116,"_log":135,"_map":181,"_match":59,"_memory":181,"_most":169,"_name":[84,88,94,96,124,129,146],"_no":178,"_obj":60,"_offset":[103,117],"_or":141,"_output":[103,117],"_pack":28,"_parameters":101,"_pat":178,"_path":[135,138,139],"_plugins":93,"_prefix":28,"_proc":61,"_processes":135,"_put":98,"_query":135,"_range":102,"_records":93,"_rectangle":145,"_register":109,"_remove":[87,105,123],"_rename":[88,124],"_reopen":99,"_schema":93,"_search":62,"_select":[11,103],"_selector":90,"_shard":104,"_size":155,"_sortby":[103,117],"_string":[151,154],"_table":[11,63,64,84,100,102,103,104,105],"_tagn":146,"_target":[103,117],"_tf":[169,170],"_thread":65,"_threshold":[103,117],"_tokenize":125,"_tokenizer":121,"_type":[49,66,121,143,192],"_types":[103,117],"_unmap":89,"_unregister":110,"_untag":148,"_user":67,"_value":[141,149],"_values":149,"_version":[48,77],"cpu\u30b3\u30a2":186,"default":[77,121],"delete":92,"in":[42,149],"new":[88,124],"null":158,"package":30,"with":18,"}]":[103,117],adjuster:117,allocate:196,api:[16,44],approximate:143,archive:30,arg:11,assign:79,autotools:6,between:141,bigram:204,blogroonga:12,body:78,cache:[81,102,117],calc:103,callback:11,cannot:196,cast:70,centos:24,changes:42,check:[82,131],ci:21,clang:14,clearlock:83,client:133,clone:17,close:146,cmake:[7,8],column:[84,85,86,87,88,141,146,147],command:77,comments:204,configure:[6,12,18,28],contain:11,cutter:[12,14],daemon:133,data:139,database:[89,138,139],db:11,debian:[12,25],define:90,defrag:91,desctipion:137,domain:199,drilldown:[103,117],dump:93,edit:142,ellipsoid:143,enable:18,equal:11,executable:133,exit:137,facebook:2,fedora:26,file:133,files:[137,139],filter:[100,102,103,117,154],flags:[106,121,125,127,192],freebsd:181,from:[84,139],geo:[143,144,145],geoindex:204,geopoint:204,get:138,gnu:[6,7,25],gqtp:[9,184,190,192],greater:11,grn:[11,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,156],grndb:131,grnslap:132,grntest:12,groonga:[0,3,4,5,6,7,8,9,11,12,17,22,42,133,134,135,136,137,138,139,187,188,190],gzip:186,hashtags:204,hat:12,header:78,highlight:[146,147],homebrew:[12,27],how:[79,184],html:[17,18,148],http:[136,164,185,190,205],https:186,id:[79,114],install:28,introduction:18,io:94,javascript:208,jessie:25,json:[78,95],kern:181,key:121,keys:[103,117],keywordn:146,label:[103,117],launch:138,lcov:14,learning:139,less:11,libmemcached:14,limit:[102,103,117],linux:181,load:95,location:143,lock:96,log:[97,98,99,139,160],logical:[100,101,102,103,104,105],mac:27,macports:27,make:[6,7,12,28],match:[103,117,151,203],max:[81,100,102,103,105,126,141],memcached:189,memory:196,messagepack:78,min:[100,102,103,105,141],mmap:196,mode:[11,125,127,133],mroonga:0,name:[88,108,121,124],near:11,news:42,nginx:135,nofile:181,normalize:106,normalizer:[106,107,121,127,146],normalizerauto:161,normalizernfkc:161,not:11,now:150,object:108,offset:[102,103,117],open:146,options:[133,138,139],oracle:29,order:102,os:27,output:[102,103,117],path:116,period:42,plugin:[69,109,110],po:12,point:143,post:[135,186],ppa:30,prefix:11,process:160,protocol:192,proxy:135,pull:17,query:[103,117,151,160,192],queryexpandertsv:166,quit:111,rand:152,range:[101,112],recover:131,rectangle:143,recursive:94,red:12,redmine:10,register:113,request:[17,79,114,138],rk:174,ruby:[115,116],run:[18,184],scope:154,scorer:[103,117,168,169,170,208],script:115,select:[103,117],senna:42,server:133,shard:[100,102,103,105],shutdown:118,similar:11,size:192,snippet:153,solaris:29,sortby:[103,117],sphere:143,standalone:133,status:[119,137,192],string:[106,125,127],sub:154,suffix:11,suggest:120,summary:184,synopstis:137,table:[86,88,117,121,122,123,124,125,178],tables:93,target:[94,96,129,149,155],thread:126,tips:12,to:[79,84,138,184],todo:[151,153],token:[121,127],tokenbigram:180,tokenbigramignoreblank:180,tokenbigramignoreblanksplitsymbol:180,tokenbigramignoreblanksplitsymbolalpha:180,tokenbigramignoreblanksplitsymbolalphadigit:180,tokenbigramsplitsymbol:180,tokenbigramsplitsymbolalpha:180,tokenbigramsplitsymbolalphadigit:180,tokendelimit:180,tokendelimitnull:180,tokenfilterstem:179,tokenfilterstopword:179,tokenize:127,tokenizer:[127,128],tokenmecab:180,tokenregexp:180,tokentrigram:180,tokenunigram:180,travis:21,truncate:129,tsv:[78,166],twitter:[2,10,12],ubuntu:[12,30],unix:7,update:[12,18],use:[102,146],users:204,value:[121,149],vector:155,vm:181,wheezy:25,windows:[8,12,31],worker:135,xml:78,zip:31}})
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5. サーバー &mdash; Groonga v5.0.4-139-g6629adbドキュメント</title>
10
+ <title>5. サーバー &mdash; Groonga v5.0.6-226-gd7da7e7ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: './',
18
- VERSION: '5.0.4-139-g6629adb',
18
+ VERSION: '5.0.6-226-gd7da7e7',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,11 +26,11 @@
26
26
  <script type="text/javascript" src="_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.4-139-g6629adbドキュメント" href="index.html" />
29
+ <link rel="top" title="Groonga v5.0.6-226-gd7da7e7ドキュメント" href="index.html" />
30
30
  <link rel="next" title="5.1. サーバーパッケージ" href="server/package.html" />
31
31
  <link rel="prev" title="4.11. クエリ拡張" href="tutorial/query_expansion.html" />
32
32
  </head>
33
- <body>
33
+ <body role="document">
34
34
  <div class="header">
35
35
  <h1 class="title">
36
36
  <a id="top-link" href="index.html">
@@ -48,7 +48,7 @@
48
48
  </div>
49
49
 
50
50
 
51
- <div class="related">
51
+ <div class="related" role="navigation" aria-label="related navigation">
52
52
  <h3>ナビゲーション</h3>
53
53
  <ul>
54
54
  <li class="right" style="margin-right: 10px">
@@ -60,14 +60,14 @@
60
60
  <li class="right" >
61
61
  <a href="tutorial/query_expansion.html" title="4.11. クエリ拡張"
62
62
  accesskey="P">前へ</a> |</li>
63
- <li><a href="index.html">Groonga v5.0.4-139-g6629adbドキュメント</a> &raquo;</li>
63
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7ドキュメント</a> &raquo;</li>
64
64
  </ul>
65
65
  </div>
66
66
 
67
67
  <div class="document">
68
68
  <div class="documentwrapper">
69
69
  <div class="bodywrapper">
70
- <div class="body">
70
+ <div class="body" role="main">
71
71
 
72
72
  <div class="section" id="server">
73
73
  <h1>5. サーバー<a class="headerlink" href="#server" title="このヘッドラインへのパーマリンク">¶</a></h1>
@@ -99,7 +99,7 @@
99
99
  </div>
100
100
  </div>
101
101
  </div>
102
- <div class="sphinxsidebar">
102
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
103
103
  <div class="sphinxsidebarwrapper">
104
104
  <h4>前のトピックへ</h4>
105
105
  <p class="topless"><a href="tutorial/query_expansion.html"
@@ -107,12 +107,14 @@
107
107
  <h4>次のトピックへ</h4>
108
108
  <p class="topless"><a href="server/package.html"
109
109
  title="次の章へ">5.1. サーバーパッケージ</a></p>
110
- <h3>このページ</h3>
111
- <ul class="this-page-menu">
112
- <li><a href="_sources/server.txt"
113
- rel="nofollow">ソースコードを表示</a></li>
114
- </ul>
115
- <div id="searchbox" style="display: none">
110
+ <div role="note" aria-label="source link">
111
+ <h3>このページ</h3>
112
+ <ul class="this-page-menu">
113
+ <li><a href="_sources/server.txt"
114
+ rel="nofollow">ソースコードを表示</a></li>
115
+ </ul>
116
+ </div>
117
+ <div id="searchbox" style="display: none" role="search">
116
118
  <h3>クイック検索</h3>
117
119
  <form class="search" action="search.html" method="get">
118
120
  <input type="text" name="q" />
@@ -129,7 +131,7 @@
129
131
  </div>
130
132
  <div class="clearer"></div>
131
133
  </div>
132
- <div class="related">
134
+ <div class="related" role="navigation" aria-label="related navigation">
133
135
  <h3>ナビゲーション</h3>
134
136
  <ul>
135
137
  <li class="right" style="margin-right: 10px">
@@ -141,10 +143,10 @@
141
143
  <li class="right" >
142
144
  <a href="tutorial/query_expansion.html" title="4.11. クエリ拡張"
143
145
  >前へ</a> |</li>
144
- <li><a href="index.html">Groonga v5.0.4-139-g6629adbドキュメント</a> &raquo;</li>
146
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7ドキュメント</a> &raquo;</li>
145
147
  </ul>
146
148
  </div>
147
- <div class="footer">
149
+ <div class="footer" role="contentinfo">
148
150
  &copy; Copyright 2009-2015, Brazil, Inc.
149
151
  </div>
150
152
  </body>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.3. GQTP &mdash; Groonga v5.0.4-139-g6629adbドキュメント</title>
10
+ <title>5.3. GQTP &mdash; Groonga v5.0.6-226-gd7da7e7ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '5.0.4-139-g6629adb',
18
+ VERSION: '5.0.6-226-gd7da7e7',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,12 +26,12 @@
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="../_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.4-139-g6629adbドキュメント" href="../index.html" />
29
+ <link rel="top" title="Groonga v5.0.6-226-gd7da7e7ドキュメント" href="../index.html" />
30
30
  <link rel="up" title="5. サーバー" href="../server.html" />
31
31
  <link rel="next" title="5.4. Memcachedバイナリプロトコル" href="memcached.html" />
32
32
  <link rel="prev" title="5.2.3. groonga-httpd" href="http/groonga-httpd.html" />
33
33
  </head>
34
- <body>
34
+ <body role="document">
35
35
  <div class="header">
36
36
  <h1 class="title">
37
37
  <a id="top-link" href="../index.html">
@@ -49,7 +49,7 @@
49
49
  </div>
50
50
 
51
51
 
52
- <div class="related">
52
+ <div class="related" role="navigation" aria-label="related navigation">
53
53
  <h3>ナビゲーション</h3>
54
54
  <ul>
55
55
  <li class="right" style="margin-right: 10px">
@@ -61,15 +61,15 @@
61
61
  <li class="right" >
62
62
  <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../index.html">Groonga v5.0.4-139-g6629adbドキュメント</a> &raquo;</li>
65
- <li><a href="../server.html" accesskey="U">5. サーバー</a> &raquo;</li>
64
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.0.6-226-gd7da7e7ドキュメント</a> &raquo;</li>
65
+ <li class="nav-item nav-item-1"><a href="../server.html" accesskey="U">5. サーバー</a> &raquo;</li>
66
66
  </ul>
67
67
  </div>
68
68
 
69
69
  <div class="document">
70
70
  <div class="documentwrapper">
71
71
  <div class="bodywrapper">
72
- <div class="body">
72
+ <div class="body" role="main">
73
73
 
74
74
  <div class="section" id="gqtp">
75
75
  <h1>5.3. GQTP<a class="headerlink" href="#gqtp" title="このヘッドラインへのパーマリンク">¶</a></h1>
@@ -116,7 +116,7 @@ line:</p>
116
116
  </div>
117
117
  </div>
118
118
  </div>
119
- <div class="sphinxsidebar">
119
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
120
120
  <div class="sphinxsidebarwrapper">
121
121
  <h3><a href="../index.html">目次</a></h3>
122
122
  <ul>
@@ -133,12 +133,14 @@ line:</p>
133
133
  <h4>次のトピックへ</h4>
134
134
  <p class="topless"><a href="memcached.html"
135
135
  title="次の章へ">5.4. Memcachedバイナリプロトコル</a></p>
136
- <h3>このページ</h3>
137
- <ul class="this-page-menu">
138
- <li><a href="../_sources/server/gqtp.txt"
139
- rel="nofollow">ソースコードを表示</a></li>
140
- </ul>
141
- <div id="searchbox" style="display: none">
136
+ <div role="note" aria-label="source link">
137
+ <h3>このページ</h3>
138
+ <ul class="this-page-menu">
139
+ <li><a href="../_sources/server/gqtp.txt"
140
+ rel="nofollow">ソースコードを表示</a></li>
141
+ </ul>
142
+ </div>
143
+ <div id="searchbox" style="display: none" role="search">
142
144
  <h3>クイック検索</h3>
143
145
  <form class="search" action="../search.html" method="get">
144
146
  <input type="text" name="q" />
@@ -155,7 +157,7 @@ line:</p>
155
157
  </div>
156
158
  <div class="clearer"></div>
157
159
  </div>
158
- <div class="related">
160
+ <div class="related" role="navigation" aria-label="related navigation">
159
161
  <h3>ナビゲーション</h3>
160
162
  <ul>
161
163
  <li class="right" style="margin-right: 10px">
@@ -167,11 +169,11 @@ line:</p>
167
169
  <li class="right" >
168
170
  <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
169
171
  >前へ</a> |</li>
170
- <li><a href="../index.html">Groonga v5.0.4-139-g6629adbドキュメント</a> &raquo;</li>
171
- <li><a href="../server.html" >5. サーバー</a> &raquo;</li>
172
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.0.6-226-gd7da7e7ドキュメント</a> &raquo;</li>
173
+ <li class="nav-item nav-item-1"><a href="../server.html" >5. サーバー</a> &raquo;</li>
172
174
  </ul>
173
175
  </div>
174
- <div class="footer">
176
+ <div class="footer" role="contentinfo">
175
177
  &copy; Copyright 2009-2015, Brazil, Inc.
176
178
  </div>
177
179
  </body>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.2. HTTP &mdash; Groonga v5.0.4-139-g6629adbドキュメント</title>
10
+ <title>5.2. HTTP &mdash; Groonga v5.0.6-226-gd7da7e7ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '5.0.4-139-g6629adb',
18
+ VERSION: '5.0.6-226-gd7da7e7',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,12 +26,12 @@
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="../_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.4-139-g6629adbドキュメント" href="../index.html" />
29
+ <link rel="top" title="Groonga v5.0.6-226-gd7da7e7ドキュメント" href="../index.html" />
30
30
  <link rel="up" title="5. サーバー" href="../server.html" />
31
31
  <link rel="next" title="5.2.1. 比較" href="http/comparison.html" />
32
32
  <link rel="prev" title="5.1. サーバーパッケージ" href="package.html" />
33
33
  </head>
34
- <body>
34
+ <body role="document">
35
35
  <div class="header">
36
36
  <h1 class="title">
37
37
  <a id="top-link" href="../index.html">
@@ -49,7 +49,7 @@
49
49
  </div>
50
50
 
51
51
 
52
- <div class="related">
52
+ <div class="related" role="navigation" aria-label="related navigation">
53
53
  <h3>ナビゲーション</h3>
54
54
  <ul>
55
55
  <li class="right" style="margin-right: 10px">
@@ -61,15 +61,15 @@
61
61
  <li class="right" >
62
62
  <a href="package.html" title="5.1. サーバーパッケージ"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../index.html">Groonga v5.0.4-139-g6629adbドキュメント</a> &raquo;</li>
65
- <li><a href="../server.html" accesskey="U">5. サーバー</a> &raquo;</li>
64
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.0.6-226-gd7da7e7ドキュメント</a> &raquo;</li>
65
+ <li class="nav-item nav-item-1"><a href="../server.html" accesskey="U">5. サーバー</a> &raquo;</li>
66
66
  </ul>
67
67
  </div>
68
68
 
69
69
  <div class="document">
70
70
  <div class="documentwrapper">
71
71
  <div class="bodywrapper">
72
- <div class="body">
72
+ <div class="body" role="main">
73
73
 
74
74
  <div class="section" id="http">
75
75
  <h1>5.2. HTTP<a class="headerlink" href="#http" title="このヘッドラインへのパーマリンク">¶</a></h1>
@@ -107,7 +107,7 @@
107
107
  </div>
108
108
  </div>
109
109
  </div>
110
- <div class="sphinxsidebar">
110
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
111
111
  <div class="sphinxsidebarwrapper">
112
112
  <h4>前のトピックへ</h4>
113
113
  <p class="topless"><a href="package.html"
@@ -115,12 +115,14 @@
115
115
  <h4>次のトピックへ</h4>
116
116
  <p class="topless"><a href="http/comparison.html"
117
117
  title="次の章へ">5.2.1. 比較</a></p>
118
- <h3>このページ</h3>
119
- <ul class="this-page-menu">
120
- <li><a href="../_sources/server/http.txt"
121
- rel="nofollow">ソースコードを表示</a></li>
122
- </ul>
123
- <div id="searchbox" style="display: none">
118
+ <div role="note" aria-label="source link">
119
+ <h3>このページ</h3>
120
+ <ul class="this-page-menu">
121
+ <li><a href="../_sources/server/http.txt"
122
+ rel="nofollow">ソースコードを表示</a></li>
123
+ </ul>
124
+ </div>
125
+ <div id="searchbox" style="display: none" role="search">
124
126
  <h3>クイック検索</h3>
125
127
  <form class="search" action="../search.html" method="get">
126
128
  <input type="text" name="q" />
@@ -137,7 +139,7 @@
137
139
  </div>
138
140
  <div class="clearer"></div>
139
141
  </div>
140
- <div class="related">
142
+ <div class="related" role="navigation" aria-label="related navigation">
141
143
  <h3>ナビゲーション</h3>
142
144
  <ul>
143
145
  <li class="right" style="margin-right: 10px">
@@ -149,11 +151,11 @@
149
151
  <li class="right" >
150
152
  <a href="package.html" title="5.1. サーバーパッケージ"
151
153
  >前へ</a> |</li>
152
- <li><a href="../index.html">Groonga v5.0.4-139-g6629adbドキュメント</a> &raquo;</li>
153
- <li><a href="../server.html" >5. サーバー</a> &raquo;</li>
154
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.0.6-226-gd7da7e7ドキュメント</a> &raquo;</li>
155
+ <li class="nav-item nav-item-1"><a href="../server.html" >5. サーバー</a> &raquo;</li>
154
156
  </ul>
155
157
  </div>
156
- <div class="footer">
158
+ <div class="footer" role="contentinfo">
157
159
  &copy; Copyright 2009-2015, Brazil, Inc.
158
160
  </div>
159
161
  </body>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.2.1. 比較 &mdash; Groonga v5.0.4-139-g6629adbドキュメント</title>
10
+ <title>5.2.1. 比較 &mdash; Groonga v5.0.6-226-gd7da7e7ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../../',
18
- VERSION: '5.0.4-139-g6629adb',
18
+ VERSION: '5.0.6-226-gd7da7e7',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,12 +26,12 @@
26
26
  <script type="text/javascript" src="../../_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="../../_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="../../_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.4-139-g6629adbドキュメント" href="../../index.html" />
29
+ <link rel="top" title="Groonga v5.0.6-226-gd7da7e7ドキュメント" href="../../index.html" />
30
30
  <link rel="up" title="5.2. HTTP" href="../http.html" />
31
31
  <link rel="next" title="5.2.2. groonga" href="groonga.html" />
32
32
  <link rel="prev" title="5.2. HTTP" href="../http.html" />
33
33
  </head>
34
- <body>
34
+ <body role="document">
35
35
  <div class="header">
36
36
  <h1 class="title">
37
37
  <a id="top-link" href="../../index.html">
@@ -49,7 +49,7 @@
49
49
  </div>
50
50
 
51
51
 
52
- <div class="related">
52
+ <div class="related" role="navigation" aria-label="related navigation">
53
53
  <h3>ナビゲーション</h3>
54
54
  <ul>
55
55
  <li class="right" style="margin-right: 10px">
@@ -61,16 +61,16 @@
61
61
  <li class="right" >
62
62
  <a href="../http.html" title="5.2. HTTP"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../../index.html">Groonga v5.0.4-139-g6629adbドキュメント</a> &raquo;</li>
65
- <li><a href="../../server.html" >5. サーバー</a> &raquo;</li>
66
- <li><a href="../http.html" accesskey="U">5.2. HTTP</a> &raquo;</li>
64
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v5.0.6-226-gd7da7e7ドキュメント</a> &raquo;</li>
65
+ <li class="nav-item nav-item-1"><a href="../../server.html" >5. サーバー</a> &raquo;</li>
66
+ <li class="nav-item nav-item-2"><a href="../http.html" accesskey="U">5.2. HTTP</a> &raquo;</li>
67
67
  </ul>
68
68
  </div>
69
69
 
70
70
  <div class="document">
71
71
  <div class="documentwrapper">
72
72
  <div class="bodywrapper">
73
- <div class="body">
73
+ <div class="body" role="main">
74
74
 
75
75
  <div class="section" id="comparison">
76
76
  <h1>5.2.1. 比較<a class="headerlink" href="#comparison" title="このヘッドラインへのパーマリンク">¶</a></h1>
@@ -180,7 +180,7 @@
180
180
  <h2>5.2.1.2. 複数CPUコア対応<a class="headerlink" href="#using-multi-cpu-cores" title="このヘッドラインへのパーマリンク">¶</a></h2>
181
181
  <p>Groongaは複数のCPUコアを使って性能を向上できます。 <a class="reference internal" href="groonga.html"><em>groonga</em></a> はマルチスレッドを使って性能を向上させます。 <a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> はマルチプロセスを使って性能を向上させます。</p>
182
182
  <p><a class="reference internal" href="groonga.html"><em>groonga</em></a> はデフォルトでCPUコアと同じ数のスレッドを使います。もし、CPUコアが8個あった場合は、デフォルトで8個のスレッドを使います。</p>
183
- <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> はデフォルトで1つのプロセスを使います。複数のCPUコアを使う場合は <a class="reference external" href="http://nginx.org/en/docs/ngx_core_module.html#worker_processes">worker_processes</a> ディレクティブを設定する必要があります。CPUコアが8個ある場合は、以下のように設定ファイルに <tt class="docutils literal"><span class="pre">worker_processes</span> <span class="pre">8</span></tt> と指定します。:</p>
183
+ <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> はデフォルトで1つのプロセスを使います。複数のCPUコアを使う場合は <a class="reference external" href="http://nginx.org/en/docs/ngx_core_module.html#worker_processes">worker_processes</a> ディレクティブを設定する必要があります。CPUコアが8個ある場合は、以下のように設定ファイルに <code class="docutils literal"><span class="pre">worker_processes</span> <span class="pre">8</span></code> と指定します。:</p>
184
184
  <div class="highlight-none"><div class="highlight"><pre>worker_processes 8;
185
185
 
186
186
  http {
@@ -215,8 +215,8 @@ http {
215
215
  </div>
216
216
  <div class="section" id="custom-prefix-path">
217
217
  <h2>5.2.1.4. プレフィックスパスの変更<a class="headerlink" href="#custom-prefix-path" title="このヘッドラインへのパーマリンク">¶</a></h2>
218
- <p><a class="reference internal" href="groonga.html"><em>groonga</em></a> は <tt class="docutils literal"><span class="pre">/d/</span></tt> から始まるパスをコマンドURLとして受け付けます。例えば、 <tt class="docutils literal"><span class="pre">http://localhost:10041/d/status</span></tt> となります。この <tt class="docutils literal"><span class="pre">/d/</span></tt> というプレフィックスパスを変更することはできません。</p>
219
- <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> はプレフィックスパスを変更することができます。例えば、 <tt class="docutils literal"><span class="pre">http://localhost:10041/api/status</span></tt> というコマンドURLを使うことができます。以下は <tt class="docutils literal"><span class="pre">/api/</span></tt> をプレフィックスパスとして使う設定例です。:</p>
218
+ <p><a class="reference internal" href="groonga.html"><em>groonga</em></a> は <code class="docutils literal"><span class="pre">/d/</span></code> から始まるパスをコマンドURLとして受け付けます。例えば、 <code class="docutils literal"><span class="pre">http://localhost:10041/d/status</span></code> となります。この <code class="docutils literal"><span class="pre">/d/</span></code> というプレフィックスパスを変更することはできません。</p>
219
+ <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> はプレフィックスパスを変更することができます。例えば、 <code class="docutils literal"><span class="pre">http://localhost:10041/api/status</span></code> というコマンドURLを使うことができます。以下は <code class="docutils literal"><span class="pre">/api/</span></code> をプレフィックスパスとして使う設定例です。:</p>
220
220
  <div class="highlight-none"><div class="highlight"><pre>events {
221
221
  }
222
222
 
@@ -236,11 +236,11 @@ http {
236
236
  <div class="section" id="custom-command-version">
237
237
  <h2>5.2.1.5. コマンドバージョンの変更<a class="headerlink" href="#custom-command-version" title="このヘッドラインへのパーマリンク">¶</a></h2>
238
238
  <p>Groongaには <a class="reference internal" href="../../reference/command/command_version.html"><em>コマンドバージョン</em></a> という仕組みがあります。これは後方互換性を維持したままgroongaコマンドをアップグレードするための仕組みです。</p>
239
- <p><a class="reference internal" href="groonga.html"><em>groonga</em></a> は <tt class="docutils literal"><span class="pre">--default-command-version</span></tt> オプションでデフォルトのコマンドバージョンを変更できます。以下はデフォルトのコマンドバージョンとしてコマンドバージョン2を使うコマンドライン例です。:</p>
239
+ <p><a class="reference internal" href="groonga.html"><em>groonga</em></a> は <code class="docutils literal"><span class="pre">--default-command-version</span></code> オプションでデフォルトのコマンドバージョンを変更できます。以下はデフォルトのコマンドバージョンとしてコマンドバージョン2を使うコマンドライン例です。:</p>
240
240
  <div class="highlight-none"><div class="highlight"><pre>% groonga --protocol http --default-command-version 2 -d /PATH/TO/DATABASE
241
241
  </pre></div>
242
242
  </div>
243
- <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> はまだデフォルトのコマンドバージョンを変更できません。しかし、すぐにサポートする予定です。サポートされたら、同じ <a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> プロセス内で異なったコマンドバージョンのgroongaコマンドを提供できます。以下はコマンドバージョン1のコマンドを <tt class="docutils literal"><span class="pre">/api/1/</span></tt> 以下で、コマンドバージョン2のコマンドを <tt class="docutils literal"><span class="pre">/api/2/</span></tt> 以下で提供するための設定例です。:</p>
243
+ <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> はまだデフォルトのコマンドバージョンを変更できません。しかし、すぐにサポートする予定です。サポートされたら、同じ <a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> プロセス内で異なったコマンドバージョンのgroongaコマンドを提供できます。以下はコマンドバージョン1のコマンドを <code class="docutils literal"><span class="pre">/api/1/</span></code> 以下で、コマンドバージョン2のコマンドを <code class="docutils literal"><span class="pre">/api/2/</span></code> 以下で提供するための設定例です。:</p>
244
244
  <div class="highlight-none"><div class="highlight"><pre>events {
245
245
  }
246
246
 
@@ -267,7 +267,7 @@ http {
267
267
  <div class="section" id="multi-databases">
268
268
  <h2>5.2.1.6. 複数データベース<a class="headerlink" href="#multi-databases" title="このヘッドラインへのパーマリンク">¶</a></h2>
269
269
  <p><a class="reference internal" href="groonga.html"><em>groonga</em></a> は1つのプロセスで1つのデータベースしか使うことができません。</p>
270
- <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> は同一プロセス内で複数のデータベースを使うことができます。以下は <tt class="docutils literal"><span class="pre">/tmp/db1</span></tt> にあるデータベースを <tt class="docutils literal"><span class="pre">/db1/</span></tt> 以下で、 <tt class="docutils literal"><span class="pre">/tmp/db2</span></tt> にあるデータベースを <tt class="docutils literal"><span class="pre">/db2/</span></tt> 以下で提供する設定例です。:</p>
270
+ <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> は同一プロセス内で複数のデータベースを使うことができます。以下は <code class="docutils literal"><span class="pre">/tmp/db1</span></code> にあるデータベースを <code class="docutils literal"><span class="pre">/db1/</span></code> 以下で、 <code class="docutils literal"><span class="pre">/tmp/db2</span></code> にあるデータベースを <code class="docutils literal"><span class="pre">/db2/</span></code> 以下で提供する設定例です。:</p>
271
271
  <div class="highlight-none"><div class="highlight"><pre>events {
272
272
  }
273
273
 
@@ -319,7 +319,7 @@ http {
319
319
  </div>
320
320
  <div class="section" id="gzip-compression">
321
321
  <h2>5.2.1.8. gzip圧縮<a class="headerlink" href="#gzip-compression" title="このヘッドラインへのパーマリンク">¶</a></h2>
322
- <p>HTTPは <tt class="docutils literal"><span class="pre">Content-Encoding:</span> <span class="pre">gzip</span></tt> レスポンスヘッダーを付けてgzipでレスポンスを圧縮する機能をサポートしています。これはネットワーク流量を小さくすることができます。大きな検索結果を返すときに有用です。</p>
322
+ <p>HTTPは <code class="docutils literal"><span class="pre">Content-Encoding:</span> <span class="pre">gzip</span></code> レスポンスヘッダーを付けてgzipでレスポンスを圧縮する機能をサポートしています。これはネットワーク流量を小さくすることができます。大きな検索結果を返すときに有用です。</p>
323
323
  <p><a class="reference internal" href="groonga.html"><em>groonga</em></a> は圧縮をサポートしていません。圧縮をサポートするためには、リバースプロキシを使う必要があります。</p>
324
324
  <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> はgzip圧縮をサポートしています。以下はレスポンスをgzipで圧縮する設定例です。:</p>
325
325
  <div class="highlight-none"><div class="highlight"><pre>events {
@@ -351,7 +351,7 @@ http {
351
351
  </li>
352
352
  <li><p class="first">JSONデータはbodyとして送る。</p>
353
353
  </li>
354
- <li><p class="first">テーブル名は <tt class="docutils literal"><span class="pre">table=名前</span></tt> というようにクエリーパラメーターで指定する。</p>
354
+ <li><p class="first">テーブル名は <code class="docutils literal"><span class="pre">table=名前</span></code> というようにクエリーパラメーターで指定する。</p>
355
355
  </li>
356
356
  </ul>
357
357
  <p>以下はcurlを使って <cite>alice</cite> と <cite>bob</cite> という2人のユーザーを <cite>Users</cite> テーブルにロードするコマンドラインの例です:</p>
@@ -377,7 +377,7 @@ http {
377
377
  </div>
378
378
  </div>
379
379
  </div>
380
- <div class="sphinxsidebar">
380
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
381
381
  <div class="sphinxsidebarwrapper">
382
382
  <h3><a href="../../index.html">目次</a></h3>
383
383
  <ul>
@@ -404,12 +404,14 @@ http {
404
404
  <h4>次のトピックへ</h4>
405
405
  <p class="topless"><a href="groonga.html"
406
406
  title="次の章へ">5.2.2. groonga</a></p>
407
- <h3>このページ</h3>
408
- <ul class="this-page-menu">
409
- <li><a href="../../_sources/server/http/comparison.txt"
410
- rel="nofollow">ソースコードを表示</a></li>
411
- </ul>
412
- <div id="searchbox" style="display: none">
407
+ <div role="note" aria-label="source link">
408
+ <h3>このページ</h3>
409
+ <ul class="this-page-menu">
410
+ <li><a href="../../_sources/server/http/comparison.txt"
411
+ rel="nofollow">ソースコードを表示</a></li>
412
+ </ul>
413
+ </div>
414
+ <div id="searchbox" style="display: none" role="search">
413
415
  <h3>クイック検索</h3>
414
416
  <form class="search" action="../../search.html" method="get">
415
417
  <input type="text" name="q" />
@@ -426,7 +428,7 @@ http {
426
428
  </div>
427
429
  <div class="clearer"></div>
428
430
  </div>
429
- <div class="related">
431
+ <div class="related" role="navigation" aria-label="related navigation">
430
432
  <h3>ナビゲーション</h3>
431
433
  <ul>
432
434
  <li class="right" style="margin-right: 10px">
@@ -438,12 +440,12 @@ http {
438
440
  <li class="right" >
439
441
  <a href="../http.html" title="5.2. HTTP"
440
442
  >前へ</a> |</li>
441
- <li><a href="../../index.html">Groonga v5.0.4-139-g6629adbドキュメント</a> &raquo;</li>
442
- <li><a href="../../server.html" >5. サーバー</a> &raquo;</li>
443
- <li><a href="../http.html" >5.2. HTTP</a> &raquo;</li>
443
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v5.0.6-226-gd7da7e7ドキュメント</a> &raquo;</li>
444
+ <li class="nav-item nav-item-1"><a href="../../server.html" >5. サーバー</a> &raquo;</li>
445
+ <li class="nav-item nav-item-2"><a href="../http.html" >5.2. HTTP</a> &raquo;</li>
444
446
  </ul>
445
447
  </div>
446
- <div class="footer">
448
+ <div class="footer" role="contentinfo">
447
449
  &copy; Copyright 2009-2015, Brazil, Inc.
448
450
  </div>
449
451
  </body>