rroonga 5.1.1-x64-mingw32 → 6.0.0-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1228) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -1
  3. data/bin/grndump +9 -0
  4. data/doc/text/cross-compile.md +72 -0
  5. data/doc/text/install.md +121 -0
  6. data/doc/text/news.md +1451 -0
  7. data/doc/text/release.md +135 -0
  8. data/doc/text/tutorial.md +402 -0
  9. data/ext/groonga/rb-grn-column.c +54 -24
  10. data/ext/groonga/rb-grn-config.c +131 -10
  11. data/ext/groonga/rb-grn-context.c +0 -10
  12. data/ext/groonga/rb-grn-encoding.c +0 -2
  13. data/ext/groonga/rb-grn-expression.c +63 -3
  14. data/ext/groonga/rb-grn-index.c +34 -0
  15. data/ext/groonga/rb-grn-object.c +10 -10
  16. data/ext/groonga/rb-grn-operator.c +7 -0
  17. data/ext/groonga/rb-grn-plugin.c +39 -0
  18. data/ext/groonga/rb-grn-utils.c +5 -65
  19. data/ext/groonga/rb-grn.h +9 -9
  20. data/ext/groonga/rb-groonga.c +31 -1
  21. data/lib/2.1/groonga.so +0 -0
  22. data/lib/2.2/groonga.so +0 -0
  23. data/lib/2.3/groonga.so +0 -0
  24. data/lib/groonga.rb +1 -0
  25. data/lib/groonga/column.rb +13 -0
  26. data/lib/groonga/dumper.rb +3 -1
  27. data/lib/groonga/expression-builder.rb +66 -18
  28. data/lib/groonga/{expression-builder-19.rb → index.rb} +11 -19
  29. data/lib/groonga/record.rb +1 -1
  30. data/lib/rroonga.rb +16 -0
  31. data/rroonga-build.rb +6 -6
  32. data/rroonga.gemspec +1 -1
  33. data/test/groonga-test-utils.rb +0 -8
  34. data/test/test-column.rb +107 -1
  35. data/test/test-config.rb +18 -0
  36. data/test/test-database.rb +0 -2
  37. data/test/test-error-message.rb +20 -0
  38. data/test/test-expression-builder.rb +172 -29
  39. data/test/test-plugin.rb +25 -1
  40. data/test/test-table-dumper.rb +35 -6
  41. data/test/test-table-select.rb +0 -1
  42. data/vendor/local/bin/grndb.exe +0 -0
  43. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  44. data/vendor/local/bin/groonga.exe +0 -0
  45. data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
  46. data/vendor/local/bin/libgroonga-0.dll +0 -0
  47. data/vendor/local/bin/libmecab-2.dll +0 -0
  48. data/vendor/local/bin/libmsgpack-4.dll +0 -0
  49. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  50. data/vendor/local/bin/libonig-5.dll +0 -0
  51. data/vendor/local/bin/libstdc++-6.dll +0 -0
  52. data/vendor/local/bin/lz4.exe +0 -0
  53. data/vendor/local/bin/lz4c.exe +0 -0
  54. data/vendor/local/bin/lz4cat +0 -0
  55. data/vendor/local/bin/mecab-config +5 -5
  56. data/vendor/local/bin/mecab.exe +0 -0
  57. data/vendor/local/bin/onig-config +1 -1
  58. data/vendor/local/bin/zlib1.dll +0 -0
  59. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
  60. data/vendor/local/include/groonga/groonga.h +16 -11
  61. data/vendor/local/include/groonga/groonga/array.h +76 -0
  62. data/vendor/local/include/groonga/groonga/command.h +3 -5
  63. data/vendor/local/include/groonga/groonga/config.h +65 -0
  64. data/vendor/local/include/groonga/groonga/dat.h +100 -0
  65. data/vendor/local/include/groonga/groonga/dump.h +34 -0
  66. data/vendor/local/include/groonga/groonga/expr.h +21 -16
  67. data/vendor/local/include/groonga/groonga/file_reader.h +2 -5
  68. data/vendor/local/include/groonga/groonga/geo.h +2 -5
  69. data/vendor/local/include/groonga/groonga/groonga.h +28 -270
  70. data/vendor/local/include/groonga/groonga/hash.h +89 -0
  71. data/vendor/local/include/groonga/groonga/ii.h +3 -5
  72. data/vendor/local/include/groonga/groonga/nfkc.h +4 -5
  73. data/vendor/local/include/groonga/groonga/normalizer.h +3 -5
  74. data/vendor/local/include/groonga/groonga/obj.h +7 -5
  75. data/vendor/local/include/groonga/groonga/output.h +3 -5
  76. data/vendor/local/include/groonga/groonga/pat.h +102 -0
  77. data/vendor/local/include/groonga/groonga/plugin.h +29 -12
  78. data/vendor/local/include/groonga/groonga/portability.h +3 -5
  79. data/vendor/local/include/groonga/groonga/request_canceler.h +2 -5
  80. data/vendor/local/include/groonga/groonga/scorer.h +3 -5
  81. data/vendor/local/include/groonga/groonga/thread.h +2 -5
  82. data/vendor/local/include/groonga/groonga/token.h +5 -6
  83. data/vendor/local/include/groonga/groonga/token_filter.h +3 -5
  84. data/vendor/local/include/groonga/groonga/tokenizer.h +3 -5
  85. data/vendor/local/include/groonga/groonga/type.h +31 -0
  86. data/vendor/local/include/groonga/groonga/util.h +3 -5
  87. data/vendor/local/include/groonga/groonga/windows.h +2 -5
  88. data/vendor/local/include/groonga/groonga/windows_event_logger.h +2 -5
  89. data/vendor/local/include/mecab.h +1336 -96
  90. data/vendor/local/include/msgpack.h +3 -11
  91. data/vendor/local/include/msgpack.hpp +4 -11
  92. data/vendor/local/include/msgpack/adaptor/adaptor_base.hpp +84 -0
  93. data/vendor/local/include/msgpack/adaptor/array_ref.hpp +174 -0
  94. data/vendor/local/include/msgpack/adaptor/bool.hpp +41 -33
  95. data/vendor/local/include/msgpack/adaptor/boost/fusion.hpp +160 -0
  96. data/vendor/local/include/msgpack/adaptor/boost/msgpack_variant.hpp +430 -0
  97. data/vendor/local/include/msgpack/adaptor/boost/optional.hpp +96 -0
  98. data/vendor/local/include/msgpack/adaptor/boost/string_ref.hpp +87 -0
  99. data/vendor/local/include/msgpack/adaptor/char_ptr.hpp +132 -53
  100. data/vendor/local/include/msgpack/adaptor/check_container_size.hpp +18 -12
  101. data/vendor/local/include/msgpack/adaptor/cpp11/array.hpp +106 -44
  102. data/vendor/local/include/msgpack/adaptor/cpp11/array_char.hpp +59 -54
  103. data/vendor/local/include/msgpack/adaptor/cpp11/array_unsigned_char.hpp +89 -0
  104. data/vendor/local/include/msgpack/adaptor/cpp11/forward_list.hpp +65 -46
  105. data/vendor/local/include/msgpack/adaptor/cpp11/reference_wrapper.hpp +68 -0
  106. data/vendor/local/include/msgpack/adaptor/cpp11/shared_ptr.hpp +82 -0
  107. data/vendor/local/include/msgpack/adaptor/cpp11/tuple.hpp +88 -64
  108. data/vendor/local/include/msgpack/adaptor/cpp11/unique_ptr.hpp +82 -0
  109. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map.hpp +151 -111
  110. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set.hpp +142 -104
  111. data/vendor/local/include/msgpack/adaptor/define.hpp +15 -13
  112. data/vendor/local/include/msgpack/adaptor/deque.hpp +78 -53
  113. data/vendor/local/include/msgpack/adaptor/detail/{cpp03_define.hpp → cpp03_define_array.hpp} +225 -210
  114. data/vendor/local/include/msgpack/adaptor/detail/cpp03_define_map.hpp +2791 -0
  115. data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple.hpp +3070 -3079
  116. data/vendor/local/include/msgpack/adaptor/detail/{cpp11_define.hpp → cpp11_define_array.hpp} +71 -62
  117. data/vendor/local/include/msgpack/adaptor/detail/cpp11_define_map.hpp +163 -0
  118. data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple.hpp +105 -42
  119. data/vendor/local/include/msgpack/adaptor/ext.hpp +237 -0
  120. data/vendor/local/include/msgpack/adaptor/fixint.hpp +178 -92
  121. data/vendor/local/include/msgpack/adaptor/float.hpp +87 -69
  122. data/vendor/local/include/msgpack/adaptor/int.hpp +243 -123
  123. data/vendor/local/include/msgpack/adaptor/list.hpp +76 -53
  124. data/vendor/local/include/msgpack/adaptor/map.hpp +244 -157
  125. data/vendor/local/include/msgpack/adaptor/msgpack_tuple.hpp +3 -11
  126. data/vendor/local/include/msgpack/adaptor/nil.hpp +45 -29
  127. data/vendor/local/include/msgpack/adaptor/pair.hpp +58 -38
  128. data/vendor/local/include/msgpack/adaptor/raw.hpp +47 -39
  129. data/vendor/local/include/msgpack/adaptor/set.hpp +156 -102
  130. data/vendor/local/include/msgpack/adaptor/string.hpp +58 -50
  131. data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +120 -113
  132. data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +114 -106
  133. data/vendor/local/include/msgpack/adaptor/v4raw.hpp +106 -0
  134. data/vendor/local/include/msgpack/adaptor/vector.hpp +94 -60
  135. data/vendor/local/include/msgpack/adaptor/vector_bool.hpp +59 -51
  136. data/vendor/local/include/msgpack/adaptor/vector_char.hpp +62 -54
  137. data/vendor/local/include/msgpack/adaptor/vector_unsigned_char.hpp +89 -0
  138. data/vendor/local/include/msgpack/cpp_config.hpp +37 -22
  139. data/vendor/local/include/msgpack/detail/cpp03_zone.hpp +17 -11
  140. data/vendor/local/include/msgpack/detail/cpp11_zone.hpp +19 -19
  141. data/vendor/local/include/msgpack/fbuffer.h +3 -11
  142. data/vendor/local/include/msgpack/fbuffer.hpp +7 -11
  143. data/vendor/local/include/msgpack/gcc_atomic.h +3 -11
  144. data/vendor/local/include/msgpack/iterator.hpp +9 -13
  145. data/vendor/local/include/msgpack/meta.hpp +51 -0
  146. data/vendor/local/include/msgpack/object.h +3 -11
  147. data/vendor/local/include/msgpack/object.hpp +390 -290
  148. data/vendor/local/include/msgpack/object_fwd.hpp +57 -44
  149. data/vendor/local/include/msgpack/pack.h +6 -12
  150. data/vendor/local/include/msgpack/pack.hpp +58 -30
  151. data/vendor/local/include/msgpack/pack_define.h +3 -11
  152. data/vendor/local/include/msgpack/pack_template.h +35 -15
  153. data/vendor/local/include/msgpack/predef.h +19 -0
  154. data/vendor/local/include/msgpack/predef/architecture.h +30 -0
  155. data/vendor/local/include/msgpack/predef/architecture/alpha.h +60 -0
  156. data/vendor/local/include/msgpack/predef/architecture/arm.h +71 -0
  157. data/vendor/local/include/msgpack/predef/architecture/blackfin.h +47 -0
  158. data/vendor/local/include/msgpack/predef/architecture/convex.h +67 -0
  159. data/vendor/local/include/msgpack/predef/architecture/ia64.h +49 -0
  160. data/vendor/local/include/msgpack/predef/architecture/m68k.h +83 -0
  161. data/vendor/local/include/msgpack/predef/architecture/mips.h +74 -0
  162. data/vendor/local/include/msgpack/predef/architecture/parisc.h +65 -0
  163. data/vendor/local/include/msgpack/predef/architecture/ppc.h +73 -0
  164. data/vendor/local/include/msgpack/predef/architecture/pyramid.h +43 -0
  165. data/vendor/local/include/msgpack/predef/architecture/rs6k.h +56 -0
  166. data/vendor/local/include/msgpack/predef/architecture/sparc.h +55 -0
  167. data/vendor/local/include/msgpack/predef/architecture/superh.h +68 -0
  168. data/vendor/local/include/msgpack/predef/architecture/sys370.h +44 -0
  169. data/vendor/local/include/msgpack/predef/architecture/sys390.h +44 -0
  170. data/vendor/local/include/msgpack/predef/architecture/x86.h +38 -0
  171. data/vendor/local/include/msgpack/predef/architecture/x86/32.h +87 -0
  172. data/vendor/local/include/msgpack/predef/architecture/x86/64.h +50 -0
  173. data/vendor/local/include/msgpack/predef/architecture/z.h +43 -0
  174. data/vendor/local/include/msgpack/predef/compiler.h +41 -0
  175. data/vendor/local/include/msgpack/predef/compiler/borland.h +64 -0
  176. data/vendor/local/include/msgpack/predef/compiler/clang.h +57 -0
  177. data/vendor/local/include/msgpack/predef/compiler/comeau.h +62 -0
  178. data/vendor/local/include/msgpack/predef/compiler/compaq.h +67 -0
  179. data/vendor/local/include/msgpack/predef/compiler/diab.h +57 -0
  180. data/vendor/local/include/msgpack/predef/compiler/digitalmars.h +57 -0
  181. data/vendor/local/include/msgpack/predef/compiler/dignus.h +57 -0
  182. data/vendor/local/include/msgpack/predef/compiler/edg.h +57 -0
  183. data/vendor/local/include/msgpack/predef/compiler/ekopath.h +58 -0
  184. data/vendor/local/include/msgpack/predef/compiler/gcc.h +69 -0
  185. data/vendor/local/include/msgpack/predef/compiler/gcc_xml.h +53 -0
  186. data/vendor/local/include/msgpack/predef/compiler/greenhills.h +67 -0
  187. data/vendor/local/include/msgpack/predef/compiler/hp_acc.h +62 -0
  188. data/vendor/local/include/msgpack/predef/compiler/iar.h +57 -0
  189. data/vendor/local/include/msgpack/predef/compiler/ibm.h +73 -0
  190. data/vendor/local/include/msgpack/predef/compiler/intel.h +66 -0
  191. data/vendor/local/include/msgpack/predef/compiler/kai.h +57 -0
  192. data/vendor/local/include/msgpack/predef/compiler/llvm.h +58 -0
  193. data/vendor/local/include/msgpack/predef/compiler/metaware.h +54 -0
  194. data/vendor/local/include/msgpack/predef/compiler/metrowerks.h +78 -0
  195. data/vendor/local/include/msgpack/predef/compiler/microtec.h +54 -0
  196. data/vendor/local/include/msgpack/predef/compiler/mpw.h +64 -0
  197. data/vendor/local/include/msgpack/predef/compiler/palm.h +57 -0
  198. data/vendor/local/include/msgpack/predef/compiler/pgi.h +61 -0
  199. data/vendor/local/include/msgpack/predef/compiler/sgi_mipspro.h +67 -0
  200. data/vendor/local/include/msgpack/predef/compiler/sunpro.h +67 -0
  201. data/vendor/local/include/msgpack/predef/compiler/tendra.h +54 -0
  202. data/vendor/local/include/msgpack/predef/compiler/visualc.h +92 -0
  203. data/vendor/local/include/msgpack/predef/compiler/watcom.h +57 -0
  204. data/vendor/local/include/msgpack/predef/detail/_cassert.h +17 -0
  205. data/vendor/local/include/msgpack/predef/detail/_exception.h +15 -0
  206. data/vendor/local/include/msgpack/predef/detail/comp_detected.h +10 -0
  207. data/vendor/local/include/msgpack/predef/detail/endian_compat.h +26 -0
  208. data/vendor/local/include/msgpack/predef/detail/os_detected.h +10 -0
  209. data/vendor/local/include/msgpack/predef/detail/platform_detected.h +10 -0
  210. data/vendor/local/include/msgpack/predef/detail/test.h +17 -0
  211. data/vendor/local/include/msgpack/predef/language.h +15 -0
  212. data/vendor/local/include/msgpack/predef/language/objc.h +43 -0
  213. data/vendor/local/include/msgpack/predef/language/stdc.h +54 -0
  214. data/vendor/local/include/msgpack/predef/language/stdcpp.h +124 -0
  215. data/vendor/local/include/msgpack/predef/library.h +14 -0
  216. data/vendor/local/include/msgpack/predef/library/c.h +18 -0
  217. data/vendor/local/include/msgpack/predef/library/c/_prefix.h +13 -0
  218. data/vendor/local/include/msgpack/predef/library/c/gnu.h +62 -0
  219. data/vendor/local/include/msgpack/predef/library/c/uc.h +48 -0
  220. data/vendor/local/include/msgpack/predef/library/c/vms.h +48 -0
  221. data/vendor/local/include/msgpack/predef/library/c/zos.h +57 -0
  222. data/vendor/local/include/msgpack/predef/library/std.h +23 -0
  223. data/vendor/local/include/msgpack/predef/library/std/_prefix.h +23 -0
  224. data/vendor/local/include/msgpack/predef/library/std/cxx.h +47 -0
  225. data/vendor/local/include/msgpack/predef/library/std/dinkumware.h +53 -0
  226. data/vendor/local/include/msgpack/predef/library/std/libcomo.h +48 -0
  227. data/vendor/local/include/msgpack/predef/library/std/modena.h +46 -0
  228. data/vendor/local/include/msgpack/predef/library/std/msl.h +54 -0
  229. data/vendor/local/include/msgpack/predef/library/std/roguewave.h +57 -0
  230. data/vendor/local/include/msgpack/predef/library/std/sgi.h +52 -0
  231. data/vendor/local/include/msgpack/predef/library/std/stdcpp3.h +54 -0
  232. data/vendor/local/include/msgpack/predef/library/std/stlport.h +60 -0
  233. data/vendor/local/include/msgpack/predef/library/std/vacpp.h +45 -0
  234. data/vendor/local/include/msgpack/predef/make.h +89 -0
  235. data/vendor/local/include/msgpack/predef/os.h +31 -0
  236. data/vendor/local/include/msgpack/predef/os/aix.h +67 -0
  237. data/vendor/local/include/msgpack/predef/os/amigaos.h +47 -0
  238. data/vendor/local/include/msgpack/predef/os/android.h +46 -0
  239. data/vendor/local/include/msgpack/predef/os/beos.h +46 -0
  240. data/vendor/local/include/msgpack/predef/os/bsd.h +95 -0
  241. data/vendor/local/include/msgpack/predef/os/bsd/bsdi.h +48 -0
  242. data/vendor/local/include/msgpack/predef/os/bsd/dragonfly.h +50 -0
  243. data/vendor/local/include/msgpack/predef/os/bsd/free.h +60 -0
  244. data/vendor/local/include/msgpack/predef/os/bsd/net.h +84 -0
  245. data/vendor/local/include/msgpack/predef/os/bsd/open.h +171 -0
  246. data/vendor/local/include/msgpack/predef/os/cygwin.h +46 -0
  247. data/vendor/local/include/msgpack/predef/os/haiku.h +47 -0
  248. data/vendor/local/include/msgpack/predef/os/hpux.h +48 -0
  249. data/vendor/local/include/msgpack/predef/os/ios.h +51 -0
  250. data/vendor/local/include/msgpack/predef/os/irix.h +47 -0
  251. data/vendor/local/include/msgpack/predef/os/linux.h +47 -0
  252. data/vendor/local/include/msgpack/predef/os/macos.h +66 -0
  253. data/vendor/local/include/msgpack/predef/os/os400.h +46 -0
  254. data/vendor/local/include/msgpack/predef/os/qnxnto.h +60 -0
  255. data/vendor/local/include/msgpack/predef/os/solaris.h +47 -0
  256. data/vendor/local/include/msgpack/predef/os/unix.h +76 -0
  257. data/vendor/local/include/msgpack/predef/os/vms.h +53 -0
  258. data/vendor/local/include/msgpack/predef/os/windows.h +51 -0
  259. data/vendor/local/include/msgpack/predef/other.h +14 -0
  260. data/vendor/local/include/msgpack/predef/other/endian.h +205 -0
  261. data/vendor/local/include/msgpack/predef/platform.h +19 -0
  262. data/vendor/local/include/msgpack/predef/platform/mingw.h +70 -0
  263. data/vendor/local/include/msgpack/predef/platform/windows_desktop.h +44 -0
  264. data/vendor/local/include/msgpack/predef/platform/windows_phone.h +42 -0
  265. data/vendor/local/include/msgpack/predef/platform/windows_runtime.h +44 -0
  266. data/vendor/local/include/msgpack/predef/platform/windows_store.h +42 -0
  267. data/vendor/local/include/msgpack/predef/version.h +15 -0
  268. data/vendor/local/include/msgpack/predef/version_number.h +54 -0
  269. data/vendor/local/include/msgpack/preprocessor.hpp +19 -0
  270. data/vendor/local/include/msgpack/preprocessor/arithmetic.hpp +25 -0
  271. data/vendor/local/include/msgpack/preprocessor/arithmetic/add.hpp +51 -0
  272. data/vendor/local/include/msgpack/preprocessor/arithmetic/dec.hpp +288 -0
  273. data/vendor/local/include/msgpack/preprocessor/arithmetic/detail/div_base.hpp +61 -0
  274. data/vendor/local/include/msgpack/preprocessor/arithmetic/div.hpp +39 -0
  275. data/vendor/local/include/msgpack/preprocessor/arithmetic/inc.hpp +288 -0
  276. data/vendor/local/include/msgpack/preprocessor/arithmetic/mod.hpp +39 -0
  277. data/vendor/local/include/msgpack/preprocessor/arithmetic/mul.hpp +53 -0
  278. data/vendor/local/include/msgpack/preprocessor/arithmetic/sub.hpp +50 -0
  279. data/vendor/local/include/msgpack/preprocessor/array.hpp +32 -0
  280. data/vendor/local/include/msgpack/preprocessor/array/data.hpp +28 -0
  281. data/vendor/local/include/msgpack/preprocessor/array/detail/get_data.hpp +55 -0
  282. data/vendor/local/include/msgpack/preprocessor/array/elem.hpp +29 -0
  283. data/vendor/local/include/msgpack/preprocessor/array/enum.hpp +33 -0
  284. data/vendor/local/include/msgpack/preprocessor/array/insert.hpp +55 -0
  285. data/vendor/local/include/msgpack/preprocessor/array/pop_back.hpp +37 -0
  286. data/vendor/local/include/msgpack/preprocessor/array/pop_front.hpp +38 -0
  287. data/vendor/local/include/msgpack/preprocessor/array/push_back.hpp +35 -0
  288. data/vendor/local/include/msgpack/preprocessor/array/push_front.hpp +35 -0
  289. data/vendor/local/include/msgpack/preprocessor/array/remove.hpp +54 -0
  290. data/vendor/local/include/msgpack/preprocessor/array/replace.hpp +49 -0
  291. data/vendor/local/include/msgpack/preprocessor/array/reverse.hpp +29 -0
  292. data/vendor/local/include/msgpack/preprocessor/array/size.hpp +28 -0
  293. data/vendor/local/include/msgpack/preprocessor/array/to_list.hpp +47 -0
  294. data/vendor/local/include/msgpack/preprocessor/array/to_seq.hpp +46 -0
  295. data/vendor/local/include/msgpack/preprocessor/array/to_tuple.hpp +33 -0
  296. data/vendor/local/include/msgpack/preprocessor/assert_msg.hpp +17 -0
  297. data/vendor/local/include/msgpack/preprocessor/cat.hpp +35 -0
  298. data/vendor/local/include/msgpack/preprocessor/comma.hpp +17 -0
  299. data/vendor/local/include/msgpack/preprocessor/comma_if.hpp +17 -0
  300. data/vendor/local/include/msgpack/preprocessor/comparison.hpp +24 -0
  301. data/vendor/local/include/msgpack/preprocessor/comparison/equal.hpp +34 -0
  302. data/vendor/local/include/msgpack/preprocessor/comparison/greater.hpp +38 -0
  303. data/vendor/local/include/msgpack/preprocessor/comparison/greater_equal.hpp +38 -0
  304. data/vendor/local/include/msgpack/preprocessor/comparison/less.hpp +46 -0
  305. data/vendor/local/include/msgpack/preprocessor/comparison/less_equal.hpp +39 -0
  306. data/vendor/local/include/msgpack/preprocessor/comparison/not_equal.hpp +814 -0
  307. data/vendor/local/include/msgpack/preprocessor/config/config.hpp +101 -0
  308. data/vendor/local/include/msgpack/preprocessor/config/limits.hpp +30 -0
  309. data/vendor/local/include/msgpack/preprocessor/control.hpp +22 -0
  310. data/vendor/local/include/msgpack/preprocessor/control/deduce_d.hpp +22 -0
  311. data/vendor/local/include/msgpack/preprocessor/control/detail/dmc/while.hpp +536 -0
  312. data/vendor/local/include/msgpack/preprocessor/control/detail/edg/while.hpp +534 -0
  313. data/vendor/local/include/msgpack/preprocessor/control/detail/msvc/while.hpp +277 -0
  314. data/vendor/local/include/msgpack/preprocessor/control/detail/while.hpp +536 -0
  315. data/vendor/local/include/msgpack/preprocessor/control/expr_if.hpp +30 -0
  316. data/vendor/local/include/msgpack/preprocessor/control/expr_iif.hpp +31 -0
  317. data/vendor/local/include/msgpack/preprocessor/control/if.hpp +30 -0
  318. data/vendor/local/include/msgpack/preprocessor/control/iif.hpp +34 -0
  319. data/vendor/local/include/msgpack/preprocessor/control/while.hpp +312 -0
  320. data/vendor/local/include/msgpack/preprocessor/debug.hpp +18 -0
  321. data/vendor/local/include/msgpack/preprocessor/debug/assert.hpp +44 -0
  322. data/vendor/local/include/msgpack/preprocessor/debug/error.hpp +33 -0
  323. data/vendor/local/include/msgpack/preprocessor/debug/line.hpp +35 -0
  324. data/vendor/local/include/msgpack/preprocessor/dec.hpp +17 -0
  325. data/vendor/local/include/msgpack/preprocessor/detail/auto_rec.hpp +293 -0
  326. data/vendor/local/include/msgpack/preprocessor/detail/check.hpp +48 -0
  327. data/vendor/local/include/msgpack/preprocessor/detail/dmc/auto_rec.hpp +286 -0
  328. data/vendor/local/include/msgpack/preprocessor/detail/is_binary.hpp +30 -0
  329. data/vendor/local/include/msgpack/preprocessor/detail/is_nullary.hpp +30 -0
  330. data/vendor/local/include/msgpack/preprocessor/detail/is_unary.hpp +30 -0
  331. data/vendor/local/include/msgpack/preprocessor/detail/null.hpp +17 -0
  332. data/vendor/local/include/msgpack/preprocessor/detail/split.hpp +35 -0
  333. data/vendor/local/include/msgpack/preprocessor/empty.hpp +17 -0
  334. data/vendor/local/include/msgpack/preprocessor/enum.hpp +17 -0
  335. data/vendor/local/include/msgpack/preprocessor/enum_params.hpp +17 -0
  336. data/vendor/local/include/msgpack/preprocessor/enum_params_with_a_default.hpp +17 -0
  337. data/vendor/local/include/msgpack/preprocessor/enum_params_with_defaults.hpp +17 -0
  338. data/vendor/local/include/msgpack/preprocessor/enum_shifted.hpp +17 -0
  339. data/vendor/local/include/msgpack/preprocessor/enum_shifted_params.hpp +17 -0
  340. data/vendor/local/include/msgpack/preprocessor/expand.hpp +17 -0
  341. data/vendor/local/include/msgpack/preprocessor/expr_if.hpp +17 -0
  342. data/vendor/local/include/msgpack/preprocessor/facilities.hpp +23 -0
  343. data/vendor/local/include/msgpack/preprocessor/facilities/apply.hpp +34 -0
  344. data/vendor/local/include/msgpack/preprocessor/facilities/detail/is_empty.hpp +55 -0
  345. data/vendor/local/include/msgpack/preprocessor/facilities/empty.hpp +23 -0
  346. data/vendor/local/include/msgpack/preprocessor/facilities/expand.hpp +28 -0
  347. data/vendor/local/include/msgpack/preprocessor/facilities/identity.hpp +23 -0
  348. data/vendor/local/include/msgpack/preprocessor/facilities/intercept.hpp +277 -0
  349. data/vendor/local/include/msgpack/preprocessor/facilities/is_1.hpp +23 -0
  350. data/vendor/local/include/msgpack/preprocessor/facilities/is_empty.hpp +56 -0
  351. data/vendor/local/include/msgpack/preprocessor/facilities/is_empty_or_1.hpp +31 -0
  352. data/vendor/local/include/msgpack/preprocessor/facilities/is_empty_variadic.hpp +57 -0
  353. data/vendor/local/include/msgpack/preprocessor/facilities/overload.hpp +25 -0
  354. data/vendor/local/include/msgpack/preprocessor/for.hpp +17 -0
  355. data/vendor/local/include/msgpack/preprocessor/identity.hpp +17 -0
  356. data/vendor/local/include/msgpack/preprocessor/if.hpp +17 -0
  357. data/vendor/local/include/msgpack/preprocessor/inc.hpp +17 -0
  358. data/vendor/local/include/msgpack/preprocessor/iterate.hpp +17 -0
  359. data/vendor/local/include/msgpack/preprocessor/iteration.hpp +19 -0
  360. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower1.hpp +99 -0
  361. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower2.hpp +99 -0
  362. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower3.hpp +99 -0
  363. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower4.hpp +99 -0
  364. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower5.hpp +99 -0
  365. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper1.hpp +99 -0
  366. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper2.hpp +99 -0
  367. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper3.hpp +99 -0
  368. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper4.hpp +99 -0
  369. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper5.hpp +99 -0
  370. data/vendor/local/include/msgpack/preprocessor/iteration/detail/finish.hpp +99 -0
  371. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward1.hpp +1342 -0
  372. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward2.hpp +1338 -0
  373. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward3.hpp +1338 -0
  374. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward4.hpp +1338 -0
  375. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward5.hpp +1338 -0
  376. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse1.hpp +1296 -0
  377. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse2.hpp +1296 -0
  378. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse3.hpp +1296 -0
  379. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse4.hpp +1296 -0
  380. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse5.hpp +1296 -0
  381. data/vendor/local/include/msgpack/preprocessor/iteration/detail/local.hpp +812 -0
  382. data/vendor/local/include/msgpack/preprocessor/iteration/detail/rlocal.hpp +782 -0
  383. data/vendor/local/include/msgpack/preprocessor/iteration/detail/self.hpp +21 -0
  384. data/vendor/local/include/msgpack/preprocessor/iteration/detail/start.hpp +99 -0
  385. data/vendor/local/include/msgpack/preprocessor/iteration/iterate.hpp +82 -0
  386. data/vendor/local/include/msgpack/preprocessor/iteration/local.hpp +26 -0
  387. data/vendor/local/include/msgpack/preprocessor/iteration/self.hpp +19 -0
  388. data/vendor/local/include/msgpack/preprocessor/library.hpp +36 -0
  389. data/vendor/local/include/msgpack/preprocessor/limits.hpp +17 -0
  390. data/vendor/local/include/msgpack/preprocessor/list.hpp +37 -0
  391. data/vendor/local/include/msgpack/preprocessor/list/adt.hpp +73 -0
  392. data/vendor/local/include/msgpack/preprocessor/list/append.hpp +40 -0
  393. data/vendor/local/include/msgpack/preprocessor/list/at.hpp +39 -0
  394. data/vendor/local/include/msgpack/preprocessor/list/cat.hpp +42 -0
  395. data/vendor/local/include/msgpack/preprocessor/list/detail/dmc/fold_left.hpp +279 -0
  396. data/vendor/local/include/msgpack/preprocessor/list/detail/edg/fold_left.hpp +536 -0
  397. data/vendor/local/include/msgpack/preprocessor/list/detail/edg/fold_right.hpp +794 -0
  398. data/vendor/local/include/msgpack/preprocessor/list/detail/fold_left.hpp +279 -0
  399. data/vendor/local/include/msgpack/preprocessor/list/detail/fold_right.hpp +277 -0
  400. data/vendor/local/include/msgpack/preprocessor/list/enum.hpp +41 -0
  401. data/vendor/local/include/msgpack/preprocessor/list/filter.hpp +54 -0
  402. data/vendor/local/include/msgpack/preprocessor/list/first_n.hpp +58 -0
  403. data/vendor/local/include/msgpack/preprocessor/list/fold_left.hpp +303 -0
  404. data/vendor/local/include/msgpack/preprocessor/list/fold_right.hpp +40 -0
  405. data/vendor/local/include/msgpack/preprocessor/list/for_each.hpp +49 -0
  406. data/vendor/local/include/msgpack/preprocessor/list/for_each_i.hpp +65 -0
  407. data/vendor/local/include/msgpack/preprocessor/list/for_each_product.hpp +141 -0
  408. data/vendor/local/include/msgpack/preprocessor/list/rest_n.hpp +55 -0
  409. data/vendor/local/include/msgpack/preprocessor/list/reverse.hpp +40 -0
  410. data/vendor/local/include/msgpack/preprocessor/list/size.hpp +58 -0
  411. data/vendor/local/include/msgpack/preprocessor/list/to_array.hpp +155 -0
  412. data/vendor/local/include/msgpack/preprocessor/list/to_seq.hpp +32 -0
  413. data/vendor/local/include/msgpack/preprocessor/list/to_tuple.hpp +61 -0
  414. data/vendor/local/include/msgpack/preprocessor/list/transform.hpp +49 -0
  415. data/vendor/local/include/msgpack/preprocessor/logical.hpp +29 -0
  416. data/vendor/local/include/msgpack/preprocessor/logical/and.hpp +30 -0
  417. data/vendor/local/include/msgpack/preprocessor/logical/bitand.hpp +38 -0
  418. data/vendor/local/include/msgpack/preprocessor/logical/bitnor.hpp +38 -0
  419. data/vendor/local/include/msgpack/preprocessor/logical/bitor.hpp +38 -0
  420. data/vendor/local/include/msgpack/preprocessor/logical/bitxor.hpp +38 -0
  421. data/vendor/local/include/msgpack/preprocessor/logical/bool.hpp +288 -0
  422. data/vendor/local/include/msgpack/preprocessor/logical/compl.hpp +36 -0
  423. data/vendor/local/include/msgpack/preprocessor/logical/nor.hpp +30 -0
  424. data/vendor/local/include/msgpack/preprocessor/logical/not.hpp +30 -0
  425. data/vendor/local/include/msgpack/preprocessor/logical/or.hpp +30 -0
  426. data/vendor/local/include/msgpack/preprocessor/logical/xor.hpp +30 -0
  427. data/vendor/local/include/msgpack/preprocessor/max.hpp +17 -0
  428. data/vendor/local/include/msgpack/preprocessor/min.hpp +17 -0
  429. data/vendor/local/include/msgpack/preprocessor/punctuation.hpp +22 -0
  430. data/vendor/local/include/msgpack/preprocessor/punctuation/comma.hpp +21 -0
  431. data/vendor/local/include/msgpack/preprocessor/punctuation/comma_if.hpp +31 -0
  432. data/vendor/local/include/msgpack/preprocessor/punctuation/detail/is_begin_parens.hpp +48 -0
  433. data/vendor/local/include/msgpack/preprocessor/punctuation/is_begin_parens.hpp +51 -0
  434. data/vendor/local/include/msgpack/preprocessor/punctuation/paren.hpp +23 -0
  435. data/vendor/local/include/msgpack/preprocessor/punctuation/paren_if.hpp +38 -0
  436. data/vendor/local/include/msgpack/preprocessor/punctuation/remove_parens.hpp +39 -0
  437. data/vendor/local/include/msgpack/preprocessor/repeat.hpp +17 -0
  438. data/vendor/local/include/msgpack/preprocessor/repeat_2nd.hpp +17 -0
  439. data/vendor/local/include/msgpack/preprocessor/repeat_3rd.hpp +17 -0
  440. data/vendor/local/include/msgpack/preprocessor/repeat_from_to.hpp +17 -0
  441. data/vendor/local/include/msgpack/preprocessor/repeat_from_to_2nd.hpp +17 -0
  442. data/vendor/local/include/msgpack/preprocessor/repeat_from_to_3rd.hpp +17 -0
  443. data/vendor/local/include/msgpack/preprocessor/repetition.hpp +32 -0
  444. data/vendor/local/include/msgpack/preprocessor/repetition/deduce_r.hpp +22 -0
  445. data/vendor/local/include/msgpack/preprocessor/repetition/deduce_z.hpp +22 -0
  446. data/vendor/local/include/msgpack/preprocessor/repetition/detail/dmc/for.hpp +536 -0
  447. data/vendor/local/include/msgpack/preprocessor/repetition/detail/edg/for.hpp +534 -0
  448. data/vendor/local/include/msgpack/preprocessor/repetition/detail/for.hpp +536 -0
  449. data/vendor/local/include/msgpack/preprocessor/repetition/detail/msvc/for.hpp +277 -0
  450. data/vendor/local/include/msgpack/preprocessor/repetition/enum.hpp +66 -0
  451. data/vendor/local/include/msgpack/preprocessor/repetition/enum_binary_params.hpp +54 -0
  452. data/vendor/local/include/msgpack/preprocessor/repetition/enum_params.hpp +41 -0
  453. data/vendor/local/include/msgpack/preprocessor/repetition/enum_params_with_a_default.hpp +25 -0
  454. data/vendor/local/include/msgpack/preprocessor/repetition/enum_params_with_defaults.hpp +24 -0
  455. data/vendor/local/include/msgpack/preprocessor/repetition/enum_shifted.hpp +68 -0
  456. data/vendor/local/include/msgpack/preprocessor/repetition/enum_shifted_binary_params.hpp +51 -0
  457. data/vendor/local/include/msgpack/preprocessor/repetition/enum_shifted_params.hpp +44 -0
  458. data/vendor/local/include/msgpack/preprocessor/repetition/enum_trailing.hpp +63 -0
  459. data/vendor/local/include/msgpack/preprocessor/repetition/enum_trailing_binary_params.hpp +53 -0
  460. data/vendor/local/include/msgpack/preprocessor/repetition/enum_trailing_params.hpp +38 -0
  461. data/vendor/local/include/msgpack/preprocessor/repetition/for.hpp +306 -0
  462. data/vendor/local/include/msgpack/preprocessor/repetition/repeat.hpp +825 -0
  463. data/vendor/local/include/msgpack/preprocessor/repetition/repeat_from_to.hpp +87 -0
  464. data/vendor/local/include/msgpack/preprocessor/selection.hpp +18 -0
  465. data/vendor/local/include/msgpack/preprocessor/selection/max.hpp +39 -0
  466. data/vendor/local/include/msgpack/preprocessor/selection/min.hpp +39 -0
  467. data/vendor/local/include/msgpack/preprocessor/seq.hpp +44 -0
  468. data/vendor/local/include/msgpack/preprocessor/seq/cat.hpp +49 -0
  469. data/vendor/local/include/msgpack/preprocessor/seq/detail/binary_transform.hpp +48 -0
  470. data/vendor/local/include/msgpack/preprocessor/seq/detail/split.hpp +284 -0
  471. data/vendor/local/include/msgpack/preprocessor/seq/elem.hpp +304 -0
  472. data/vendor/local/include/msgpack/preprocessor/seq/enum.hpp +288 -0
  473. data/vendor/local/include/msgpack/preprocessor/seq/filter.hpp +54 -0
  474. data/vendor/local/include/msgpack/preprocessor/seq/first_n.hpp +30 -0
  475. data/vendor/local/include/msgpack/preprocessor/seq/fold_left.hpp +1070 -0
  476. data/vendor/local/include/msgpack/preprocessor/seq/fold_right.hpp +288 -0
  477. data/vendor/local/include/msgpack/preprocessor/seq/for_each.hpp +60 -0
  478. data/vendor/local/include/msgpack/preprocessor/seq/for_each_i.hpp +61 -0
  479. data/vendor/local/include/msgpack/preprocessor/seq/for_each_product.hpp +126 -0
  480. data/vendor/local/include/msgpack/preprocessor/seq/insert.hpp +28 -0
  481. data/vendor/local/include/msgpack/preprocessor/seq/pop_back.hpp +29 -0
  482. data/vendor/local/include/msgpack/preprocessor/seq/pop_front.hpp +27 -0
  483. data/vendor/local/include/msgpack/preprocessor/seq/push_back.hpp +19 -0
  484. data/vendor/local/include/msgpack/preprocessor/seq/push_front.hpp +19 -0
  485. data/vendor/local/include/msgpack/preprocessor/seq/remove.hpp +29 -0
  486. data/vendor/local/include/msgpack/preprocessor/seq/replace.hpp +29 -0
  487. data/vendor/local/include/msgpack/preprocessor/seq/rest_n.hpp +30 -0
  488. data/vendor/local/include/msgpack/preprocessor/seq/reverse.hpp +39 -0
  489. data/vendor/local/include/msgpack/preprocessor/seq/seq.hpp +44 -0
  490. data/vendor/local/include/msgpack/preprocessor/seq/size.hpp +547 -0
  491. data/vendor/local/include/msgpack/preprocessor/seq/subseq.hpp +28 -0
  492. data/vendor/local/include/msgpack/preprocessor/seq/to_array.hpp +28 -0
  493. data/vendor/local/include/msgpack/preprocessor/seq/to_list.hpp +29 -0
  494. data/vendor/local/include/msgpack/preprocessor/seq/to_tuple.hpp +27 -0
  495. data/vendor/local/include/msgpack/preprocessor/seq/transform.hpp +48 -0
  496. data/vendor/local/include/msgpack/preprocessor/seq/variadic_seq_to_seq.hpp +28 -0
  497. data/vendor/local/include/msgpack/preprocessor/slot.hpp +17 -0
  498. data/vendor/local/include/msgpack/preprocessor/slot/counter.hpp +25 -0
  499. data/vendor/local/include/msgpack/preprocessor/slot/detail/counter.hpp +269 -0
  500. data/vendor/local/include/msgpack/preprocessor/slot/detail/def.hpp +49 -0
  501. data/vendor/local/include/msgpack/preprocessor/slot/detail/shared.hpp +247 -0
  502. data/vendor/local/include/msgpack/preprocessor/slot/detail/slot1.hpp +267 -0
  503. data/vendor/local/include/msgpack/preprocessor/slot/detail/slot2.hpp +267 -0
  504. data/vendor/local/include/msgpack/preprocessor/slot/detail/slot3.hpp +267 -0
  505. data/vendor/local/include/msgpack/preprocessor/slot/detail/slot4.hpp +267 -0
  506. data/vendor/local/include/msgpack/preprocessor/slot/detail/slot5.hpp +267 -0
  507. data/vendor/local/include/msgpack/preprocessor/slot/slot.hpp +32 -0
  508. data/vendor/local/include/msgpack/preprocessor/stringize.hpp +33 -0
  509. data/vendor/local/include/msgpack/preprocessor/tuple.hpp +35 -0
  510. data/vendor/local/include/msgpack/preprocessor/tuple/detail/is_single_return.hpp +28 -0
  511. data/vendor/local/include/msgpack/preprocessor/tuple/eat.hpp +106 -0
  512. data/vendor/local/include/msgpack/preprocessor/tuple/elem.hpp +201 -0
  513. data/vendor/local/include/msgpack/preprocessor/tuple/enum.hpp +22 -0
  514. data/vendor/local/include/msgpack/preprocessor/tuple/insert.hpp +37 -0
  515. data/vendor/local/include/msgpack/preprocessor/tuple/pop_back.hpp +64 -0
  516. data/vendor/local/include/msgpack/preprocessor/tuple/pop_front.hpp +65 -0
  517. data/vendor/local/include/msgpack/preprocessor/tuple/push_back.hpp +31 -0
  518. data/vendor/local/include/msgpack/preprocessor/tuple/push_front.hpp +32 -0
  519. data/vendor/local/include/msgpack/preprocessor/tuple/rem.hpp +149 -0
  520. data/vendor/local/include/msgpack/preprocessor/tuple/remove.hpp +64 -0
  521. data/vendor/local/include/msgpack/preprocessor/tuple/replace.hpp +37 -0
  522. data/vendor/local/include/msgpack/preprocessor/tuple/reverse.hpp +117 -0
  523. data/vendor/local/include/msgpack/preprocessor/tuple/size.hpp +28 -0
  524. data/vendor/local/include/msgpack/preprocessor/tuple/to_array.hpp +39 -0
  525. data/vendor/local/include/msgpack/preprocessor/tuple/to_list.hpp +118 -0
  526. data/vendor/local/include/msgpack/preprocessor/tuple/to_seq.hpp +119 -0
  527. data/vendor/local/include/msgpack/preprocessor/variadic.hpp +23 -0
  528. data/vendor/local/include/msgpack/preprocessor/variadic/detail/is_single_return.hpp +28 -0
  529. data/vendor/local/include/msgpack/preprocessor/variadic/elem.hpp +94 -0
  530. data/vendor/local/include/msgpack/preprocessor/variadic/size.hpp +30 -0
  531. data/vendor/local/include/msgpack/preprocessor/variadic/to_array.hpp +32 -0
  532. data/vendor/local/include/msgpack/preprocessor/variadic/to_list.hpp +25 -0
  533. data/vendor/local/include/msgpack/preprocessor/variadic/to_seq.hpp +25 -0
  534. data/vendor/local/include/msgpack/preprocessor/variadic/to_tuple.hpp +24 -0
  535. data/vendor/local/include/msgpack/preprocessor/while.hpp +17 -0
  536. data/vendor/local/include/msgpack/preprocessor/wstringize.hpp +29 -0
  537. data/vendor/local/include/msgpack/sbuffer.h +3 -11
  538. data/vendor/local/include/msgpack/sbuffer.hpp +34 -16
  539. data/vendor/local/include/msgpack/sysdep.h +102 -116
  540. data/vendor/local/include/msgpack/type.hpp +17 -0
  541. data/vendor/local/include/msgpack/unpack.h +3 -11
  542. data/vendor/local/include/msgpack/unpack.hpp +23 -47
  543. data/vendor/local/include/msgpack/unpack_define.h +3 -11
  544. data/vendor/local/include/msgpack/unpack_template.h +322 -328
  545. data/vendor/local/include/msgpack/util.h +3 -11
  546. data/vendor/local/include/msgpack/version.h +3 -11
  547. data/vendor/local/include/msgpack/version.hpp +3 -11
  548. data/vendor/local/include/msgpack/version_master.h +2 -2
  549. data/vendor/local/include/msgpack/versioning.hpp +27 -35
  550. data/vendor/local/include/msgpack/vrefbuffer.h +3 -11
  551. data/vendor/local/include/msgpack/vrefbuffer.hpp +7 -11
  552. data/vendor/local/include/msgpack/zbuffer.h +17 -25
  553. data/vendor/local/include/msgpack/zbuffer.hpp +9 -13
  554. data/vendor/local/include/msgpack/zone.h +3 -11
  555. data/vendor/local/include/msgpack/zone.hpp +3 -11
  556. data/vendor/local/lib/groonga/plugins/functions/string.a +0 -0
  557. data/vendor/local/lib/groonga/plugins/functions/string.dll +0 -0
  558. data/vendor/local/lib/groonga/plugins/functions/string.dll.a +0 -0
  559. data/vendor/local/lib/groonga/plugins/functions/string.la +41 -0
  560. data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
  561. data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
  562. data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
  563. data/vendor/local/lib/groonga/plugins/functions/vector.la +4 -4
  564. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  565. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  566. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  567. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +4 -4
  568. data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
  569. data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
  570. data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
  571. data/vendor/local/lib/groonga/plugins/ruby/eval.la +4 -4
  572. data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
  573. data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
  574. data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
  575. data/vendor/local/lib/groonga/plugins/ruby/load.la +4 -4
  576. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  577. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  578. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  579. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +4 -4
  580. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  581. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  582. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  583. data/vendor/local/lib/groonga/plugins/table/table.la +4 -4
  584. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
  585. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
  586. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
  587. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +4 -4
  588. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  589. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  590. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  591. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +4 -4
  592. data/vendor/local/lib/groonga/scripts/ruby/accessor.rb +5 -0
  593. data/vendor/local/lib/groonga/scripts/ruby/command_line/grndb.rb +202 -90
  594. data/vendor/local/lib/groonga/scripts/ruby/command_line_parser.rb +156 -0
  595. data/vendor/local/lib/groonga/scripts/ruby/context.rb +2 -4
  596. data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters.rb +5 -5
  597. data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +2 -1
  598. data/vendor/local/lib/groonga/scripts/ruby/fixed_size_column.rb +5 -0
  599. data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +5 -0
  600. data/vendor/local/lib/groonga/scripts/ruby/logger.rb +1 -3
  601. data/vendor/local/lib/groonga/scripts/ruby/require.rb +4 -1
  602. data/vendor/local/lib/groonga/scripts/ruby/scan_info.rb +3 -0
  603. data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +29 -1
  604. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +18 -14
  605. data/vendor/local/lib/groonga/scripts/ruby/table.rb +8 -0
  606. data/vendor/local/lib/groonga/scripts/ruby/table_cursor.rb +2 -0
  607. data/vendor/local/lib/groonga/scripts/ruby/variable_size_column.rb +5 -0
  608. data/vendor/local/lib/libgroonga.a +0 -0
  609. data/vendor/local/lib/libgroonga.dll.a +0 -0
  610. data/vendor/local/lib/libgroonga.la +4 -4
  611. data/vendor/local/lib/liblz4.a +0 -0
  612. data/vendor/local/lib/liblz4.dll +0 -0
  613. data/vendor/local/lib/liblz4.dll.1 +0 -0
  614. data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
  615. data/vendor/local/lib/libmecab.a +0 -0
  616. data/vendor/local/lib/libmecab.dll.a +0 -0
  617. data/vendor/local/lib/libmecab.la +4 -4
  618. data/vendor/local/lib/libmsgpack.a +0 -0
  619. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  620. data/vendor/local/lib/libmsgpack.la +2 -2
  621. data/vendor/local/lib/libmsgpackc.a +0 -0
  622. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  623. data/vendor/local/lib/libmsgpackc.la +2 -2
  624. data/vendor/local/lib/libonig.a +0 -0
  625. data/vendor/local/lib/libonig.dll.a +0 -0
  626. data/vendor/local/lib/libonig.la +4 -4
  627. data/vendor/local/lib/libz.a +0 -0
  628. data/vendor/local/lib/libz.dll.a +0 -0
  629. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  630. data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
  631. data/vendor/local/lib/pkgconfig/msgpack.pc +2 -2
  632. data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
  633. data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
  634. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  635. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  636. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  637. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  638. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  639. data/vendor/local/sbin/groonga-httpd-restart +1 -1
  640. data/vendor/local/sbin/groonga-httpd.exe +0 -0
  641. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  642. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +1 -1
  643. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
  644. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
  645. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
  646. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  647. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +5 -3
  648. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  649. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
  650. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
  651. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +288 -3
  652. data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +2 -0
  653. data/vendor/local/share/doc/groonga/en/html/_sources/reference/alias.txt +164 -0
  654. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +1 -1
  655. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_geo.txt +1 -1
  656. data/vendor/local/share/doc/groonga/en/html/_sources/reference/command/command_version.txt +2 -2
  657. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_copy.txt +1 -1
  658. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_delete.txt +95 -0
  659. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_get.txt +96 -0
  660. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_set.txt +96 -0
  661. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_acquire.txt +102 -0
  662. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_clear.txt +10 -9
  663. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_release.txt +98 -0
  664. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_exist.txt +7 -2
  665. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_inspect.txt +385 -0
  666. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_remove.txt +140 -0
  667. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/reindex.txt +2 -2
  668. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/schema.txt +627 -0
  669. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_list.txt +3 -0
  670. data/vendor/local/share/doc/groonga/en/html/_sources/reference/configuration.txt +50 -0
  671. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/grndb.txt +41 -4
  672. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +3 -3
  673. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr.txt +1 -1
  674. data/vendor/local/share/doc/groonga/en/html/_sources/reference/operations/geolocation_search.txt +1 -1
  675. data/vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt +4 -0
  676. data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +1 -1
  677. data/vendor/local/share/doc/groonga/en/html/_sources/reference/types.txt +1 -1
  678. data/vendor/local/share/doc/groonga/en/html/_sources/server/memcached.txt +1 -0
  679. data/vendor/local/share/doc/groonga/en/html/_sources/server/package.txt +1 -1
  680. data/vendor/local/share/doc/groonga/en/html/_static/basic.css +1 -1
  681. data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +1 -1
  682. data/vendor/local/share/doc/groonga/en/html/_static/pygments.css +2 -0
  683. data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +1 -1
  684. data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +1 -1
  685. data/vendor/local/share/doc/groonga/en/html/characteristic.html +6 -6
  686. data/vendor/local/share/doc/groonga/en/html/client.html +6 -6
  687. data/vendor/local/share/doc/groonga/en/html/community.html +6 -6
  688. data/vendor/local/share/doc/groonga/en/html/contribution.html +6 -6
  689. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -6
  690. data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +6 -6
  691. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +10 -10
  692. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +9 -9
  693. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +9 -9
  694. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -6
  695. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +9 -9
  696. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +14 -14
  697. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +57 -57
  698. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +7 -7
  699. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +16 -16
  700. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -6
  701. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -6
  702. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +16 -16
  703. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +12 -12
  704. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +6 -6
  705. data/vendor/local/share/doc/groonga/en/html/development.html +6 -6
  706. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +7 -7
  707. data/vendor/local/share/doc/groonga/en/html/genindex.html +6 -6
  708. data/vendor/local/share/doc/groonga/en/html/index.html +117 -97
  709. data/vendor/local/share/doc/groonga/en/html/install.html +6 -6
  710. data/vendor/local/share/doc/groonga/en/html/install/centos.html +30 -30
  711. data/vendor/local/share/doc/groonga/en/html/install/debian.html +25 -25
  712. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +20 -20
  713. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +15 -15
  714. data/vendor/local/share/doc/groonga/en/html/install/others.html +24 -24
  715. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +13 -13
  716. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +20 -20
  717. data/vendor/local/share/doc/groonga/en/html/install/windows.html +15 -15
  718. data/vendor/local/share/doc/groonga/en/html/limitations.html +6 -6
  719. data/vendor/local/share/doc/groonga/en/html/news.html +350 -102
  720. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +6 -6
  721. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +6 -6
  722. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +6 -6
  723. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +7 -7
  724. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +6 -6
  725. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +8 -8
  726. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +6 -6
  727. data/vendor/local/share/doc/groonga/en/html/news/4.x.html +8 -8
  728. data/vendor/local/share/doc/groonga/en/html/news/senna.html +6 -6
  729. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  730. data/vendor/local/share/doc/groonga/en/html/reference.html +117 -97
  731. data/vendor/local/share/doc/groonga/en/html/reference/alias.html +447 -0
  732. data/vendor/local/share/doc/groonga/en/html/reference/api.html +40 -40
  733. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +23 -23
  734. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +26 -26
  735. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +30 -30
  736. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +25 -25
  737. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +23 -23
  738. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +28 -28
  739. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +25 -25
  740. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +25 -25
  741. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +24 -24
  742. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +26 -26
  743. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +25 -25
  744. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +25 -25
  745. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +25 -25
  746. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +25 -25
  747. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +25 -25
  748. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +25 -25
  749. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +25 -25
  750. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +25 -25
  751. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +25 -25
  752. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +25 -25
  753. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +26 -26
  754. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +25 -25
  755. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +21 -21
  756. data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +26 -26
  757. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +23 -23
  758. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -6
  759. data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -6
  760. data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +6 -6
  761. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +6 -6
  762. data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +6 -6
  763. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +23 -23
  764. data/vendor/local/share/doc/groonga/en/html/reference/command.html +61 -53
  765. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +24 -24
  766. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +19 -19
  767. data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +8 -8
  768. data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +7 -7
  769. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +6 -6
  770. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +10 -10
  771. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +9 -9
  772. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +10 -10
  773. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +22 -22
  774. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +10 -10
  775. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +11 -11
  776. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +9 -9
  777. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +14 -14
  778. data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +255 -0
  779. data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +239 -0
  780. data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +237 -0
  781. data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +35 -35
  782. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +31 -31
  783. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +30 -30
  784. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +34 -34
  785. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +46 -46
  786. data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +60 -60
  787. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +35 -35
  788. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +247 -0
  789. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +43 -42
  790. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +246 -0
  791. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +32 -32
  792. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +31 -31
  793. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +33 -33
  794. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +53 -53
  795. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +43 -43
  796. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +63 -63
  797. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +135 -135
  798. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +43 -43
  799. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +48 -48
  800. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +41 -41
  801. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +29 -29
  802. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +43 -38
  803. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +592 -0
  804. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +324 -0
  805. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +30 -30
  806. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +29 -29
  807. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +28 -28
  808. data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +26 -26
  809. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +29 -29
  810. data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +36 -36
  811. data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +37 -37
  812. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +33 -33
  813. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +34 -34
  814. data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +1188 -0
  815. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +187 -187
  816. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +28 -28
  817. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +36 -36
  818. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +41 -41
  819. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +56 -56
  820. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +29 -29
  821. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +52 -52
  822. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +35 -35
  823. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +42 -42
  824. data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +37 -37
  825. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +55 -55
  826. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +29 -29
  827. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +30 -30
  828. data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +178 -0
  829. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +6 -6
  830. data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +43 -10
  831. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +8 -8
  832. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +14 -14
  833. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +34 -34
  834. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +9 -9
  835. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +7 -7
  836. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +13 -13
  837. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +9 -9
  838. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +30 -30
  839. data/vendor/local/share/doc/groonga/en/html/reference/function.html +6 -6
  840. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +10 -10
  841. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +8 -8
  842. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +20 -20
  843. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +8 -8
  844. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +8 -8
  845. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +11 -11
  846. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +11 -11
  847. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +11 -11
  848. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +10 -10
  849. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +8 -8
  850. data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +15 -15
  851. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +12 -12
  852. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +8 -8
  853. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +11 -11
  854. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +11 -11
  855. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +11 -11
  856. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +7 -7
  857. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +24 -24
  858. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +47 -47
  859. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +29 -29
  860. data/vendor/local/share/doc/groonga/en/html/reference/log.html +41 -41
  861. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +10 -10
  862. data/vendor/local/share/doc/groonga/en/html/reference/operations.html +6 -6
  863. data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +7 -7
  864. data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +12 -12
  865. data/vendor/local/share/doc/groonga/en/html/reference/output.html +16 -16
  866. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -6
  867. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +17 -17
  868. data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +23 -23
  869. data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +18 -18
  870. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +10 -10
  871. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +10 -10
  872. data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +32 -32
  873. data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +35 -35
  874. data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +40 -40
  875. data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +31 -31
  876. data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +27 -27
  877. data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +32 -32
  878. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +6 -6
  879. data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +9 -9
  880. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +29 -29
  881. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +46 -46
  882. data/vendor/local/share/doc/groonga/en/html/reference/types.html +11 -11
  883. data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
  884. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  885. data/vendor/local/share/doc/groonga/en/html/server.html +6 -6
  886. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +8 -8
  887. data/vendor/local/share/doc/groonga/en/html/server/http.html +6 -6
  888. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +17 -17
  889. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +6 -6
  890. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +6 -6
  891. data/vendor/local/share/doc/groonga/en/html/server/memcached.html +8 -7
  892. data/vendor/local/share/doc/groonga/en/html/server/package.html +29 -29
  893. data/vendor/local/share/doc/groonga/en/html/spec.html +10 -10
  894. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +13 -13
  895. data/vendor/local/share/doc/groonga/en/html/spec/search.html +8 -8
  896. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -6
  897. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +16 -16
  898. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
  899. data/vendor/local/share/doc/groonga/en/html/tutorial.html +6 -6
  900. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +14 -14
  901. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +13 -13
  902. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +13 -13
  903. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +27 -27
  904. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -6
  905. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +18 -18
  906. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +18 -18
  907. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +9 -9
  908. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +8 -8
  909. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +9 -9
  910. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +16 -16
  911. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  912. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +1 -1
  913. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
  914. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
  915. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
  916. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  917. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +5 -3
  918. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  919. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
  920. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
  921. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +288 -3
  922. data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +2 -0
  923. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/alias.txt +164 -0
  924. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +1 -1
  925. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_geo.txt +1 -1
  926. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/command/command_version.txt +2 -2
  927. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_copy.txt +1 -1
  928. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_delete.txt +95 -0
  929. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_get.txt +96 -0
  930. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_set.txt +96 -0
  931. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_acquire.txt +102 -0
  932. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_clear.txt +10 -9
  933. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_release.txt +98 -0
  934. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_exist.txt +7 -2
  935. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_inspect.txt +385 -0
  936. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_remove.txt +140 -0
  937. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/reindex.txt +2 -2
  938. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/schema.txt +627 -0
  939. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt +3 -0
  940. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/configuration.txt +50 -0
  941. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/grndb.txt +41 -4
  942. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +3 -3
  943. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr.txt +1 -1
  944. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/operations/geolocation_search.txt +1 -1
  945. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt +4 -0
  946. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +1 -1
  947. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/types.txt +1 -1
  948. data/vendor/local/share/doc/groonga/ja/html/_sources/server/memcached.txt +1 -0
  949. data/vendor/local/share/doc/groonga/ja/html/_sources/server/package.txt +1 -1
  950. data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +1 -1
  951. data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +1 -1
  952. data/vendor/local/share/doc/groonga/ja/html/_static/pygments.css +2 -0
  953. data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +1 -1
  954. data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +1 -1
  955. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +6 -6
  956. data/vendor/local/share/doc/groonga/ja/html/client.html +6 -6
  957. data/vendor/local/share/doc/groonga/ja/html/community.html +6 -6
  958. data/vendor/local/share/doc/groonga/ja/html/contribution.html +6 -6
  959. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -6
  960. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +6 -6
  961. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +10 -10
  962. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +9 -9
  963. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +9 -9
  964. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -6
  965. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +9 -9
  966. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +14 -14
  967. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +57 -57
  968. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +7 -7
  969. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +16 -16
  970. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +6 -6
  971. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -6
  972. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +16 -16
  973. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +12 -12
  974. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -6
  975. data/vendor/local/share/doc/groonga/ja/html/development.html +6 -6
  976. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +7 -7
  977. data/vendor/local/share/doc/groonga/ja/html/genindex.html +6 -6
  978. data/vendor/local/share/doc/groonga/ja/html/index.html +116 -96
  979. data/vendor/local/share/doc/groonga/ja/html/install.html +6 -6
  980. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +30 -30
  981. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +25 -25
  982. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +20 -20
  983. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +15 -15
  984. data/vendor/local/share/doc/groonga/ja/html/install/others.html +24 -24
  985. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +13 -13
  986. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +20 -20
  987. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +15 -15
  988. data/vendor/local/share/doc/groonga/ja/html/limitations.html +6 -6
  989. data/vendor/local/share/doc/groonga/ja/html/news.html +329 -100
  990. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +6 -6
  991. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +6 -6
  992. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +6 -6
  993. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +7 -7
  994. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +6 -6
  995. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +8 -8
  996. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +6 -6
  997. data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +7 -7
  998. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +6 -6
  999. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  1000. data/vendor/local/share/doc/groonga/ja/html/reference.html +116 -96
  1001. data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +419 -0
  1002. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +40 -40
  1003. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +23 -23
  1004. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +26 -26
  1005. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +30 -30
  1006. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +25 -25
  1007. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +23 -23
  1008. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +26 -26
  1009. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +25 -25
  1010. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +25 -25
  1011. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +24 -24
  1012. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +26 -26
  1013. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +25 -25
  1014. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +25 -25
  1015. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +25 -25
  1016. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +25 -25
  1017. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +25 -25
  1018. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +25 -25
  1019. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +25 -25
  1020. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +25 -25
  1021. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +25 -25
  1022. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +25 -25
  1023. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +26 -26
  1024. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +25 -25
  1025. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +21 -21
  1026. data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +26 -26
  1027. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +23 -23
  1028. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -6
  1029. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -6
  1030. data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +6 -6
  1031. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +6 -6
  1032. data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +6 -6
  1033. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +23 -23
  1034. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +56 -48
  1035. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +23 -23
  1036. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +15 -15
  1037. data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +8 -8
  1038. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +7 -7
  1039. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +6 -6
  1040. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +10 -10
  1041. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +9 -9
  1042. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +10 -10
  1043. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +22 -22
  1044. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +10 -10
  1045. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +11 -11
  1046. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +9 -9
  1047. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +14 -14
  1048. data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +254 -0
  1049. data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +235 -0
  1050. data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +234 -0
  1051. data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +35 -35
  1052. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +31 -31
  1053. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +30 -30
  1054. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +34 -34
  1055. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +46 -46
  1056. data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +60 -60
  1057. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +37 -37
  1058. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +242 -0
  1059. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +43 -43
  1060. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +242 -0
  1061. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +32 -32
  1062. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +31 -31
  1063. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +33 -33
  1064. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +53 -53
  1065. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +43 -43
  1066. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +63 -63
  1067. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +135 -135
  1068. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +43 -43
  1069. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +48 -48
  1070. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +41 -41
  1071. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +29 -29
  1072. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +41 -36
  1073. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +595 -0
  1074. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +306 -0
  1075. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +30 -30
  1076. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +29 -29
  1077. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +28 -28
  1078. data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +26 -26
  1079. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +29 -29
  1080. data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +34 -34
  1081. data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +37 -37
  1082. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +33 -33
  1083. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +34 -34
  1084. data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +1196 -0
  1085. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +187 -187
  1086. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +28 -28
  1087. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +33 -33
  1088. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +45 -45
  1089. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +56 -56
  1090. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +29 -29
  1091. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +52 -52
  1092. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +35 -35
  1093. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +42 -42
  1094. data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +37 -37
  1095. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +55 -55
  1096. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +29 -29
  1097. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +31 -31
  1098. data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +167 -0
  1099. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +6 -6
  1100. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +35 -10
  1101. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +8 -8
  1102. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +14 -14
  1103. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +35 -35
  1104. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +8 -8
  1105. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +7 -7
  1106. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +13 -13
  1107. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +9 -9
  1108. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +30 -30
  1109. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +6 -6
  1110. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +10 -10
  1111. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +8 -8
  1112. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +20 -20
  1113. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +8 -8
  1114. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +8 -8
  1115. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +10 -10
  1116. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +10 -10
  1117. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +10 -10
  1118. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +10 -10
  1119. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +8 -8
  1120. data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +15 -15
  1121. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +12 -12
  1122. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +8 -8
  1123. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +11 -11
  1124. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +11 -11
  1125. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +11 -11
  1126. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +6 -6
  1127. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +25 -25
  1128. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +48 -48
  1129. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +29 -29
  1130. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +41 -41
  1131. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +10 -10
  1132. data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +6 -6
  1133. data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +6 -6
  1134. data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +12 -12
  1135. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +16 -16
  1136. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -6
  1137. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +17 -17
  1138. data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +23 -23
  1139. data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +18 -18
  1140. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +10 -10
  1141. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +10 -10
  1142. data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +32 -32
  1143. data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +35 -35
  1144. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +40 -40
  1145. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +31 -31
  1146. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +27 -27
  1147. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +32 -32
  1148. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +6 -6
  1149. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +9 -9
  1150. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +28 -28
  1151. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +46 -46
  1152. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +11 -11
  1153. data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
  1154. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  1155. data/vendor/local/share/doc/groonga/ja/html/server.html +6 -6
  1156. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +8 -8
  1157. data/vendor/local/share/doc/groonga/ja/html/server/http.html +6 -6
  1158. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +16 -16
  1159. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +6 -6
  1160. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +6 -6
  1161. data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +8 -7
  1162. data/vendor/local/share/doc/groonga/ja/html/server/package.html +28 -28
  1163. data/vendor/local/share/doc/groonga/ja/html/spec.html +10 -10
  1164. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +13 -13
  1165. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +8 -8
  1166. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -6
  1167. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +16 -16
  1168. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
  1169. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -6
  1170. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +14 -14
  1171. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +13 -13
  1172. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +13 -13
  1173. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +27 -27
  1174. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -6
  1175. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +18 -18
  1176. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +18 -18
  1177. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +9 -9
  1178. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +8 -8
  1179. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +9 -9
  1180. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +16 -16
  1181. data/vendor/local/share/groonga/html/admin.old/index.html +1 -1
  1182. data/vendor/local/share/groonga/html/admin.old/index.ja.html +1 -1
  1183. data/vendor/local/share/groonga/html/admin.old/js/{jquery.flot-0.7.js → jquery.flot-0.8.3.js} +1540 -817
  1184. data/vendor/local/share/groonga/html/admin.old/js/jquery.flot.license.txt +1 -1
  1185. data/vendor/local/share/groonga/mruby/LEGAL +29 -29
  1186. data/vendor/local/share/license/mruby/AUTHORS +3 -1
  1187. data/vendor/local/share/license/mruby/MITL +1 -1
  1188. data/vendor/local/share/license/mruby/README.md +13 -45
  1189. data/vendor/local/share/license/msgpack/COPYING +4 -13
  1190. data/vendor/local/share/license/msgpack/LICENSE_1_0.txt +23 -0
  1191. data/vendor/local/share/license/msgpack/NOTICE +14 -0
  1192. data/vendor/local/share/license/msgpack/{README → README.md} +4 -4
  1193. data/vendor/local/share/man/ja/man1/groonga.1 +3429 -398
  1194. data/vendor/local/share/man/man1/groonga.1 +3670 -500
  1195. metadata +523 -89
  1196. data/lib/2.0/groonga.so +0 -0
  1197. data/vendor/local/bin/libmecab-1.dll +0 -0
  1198. data/vendor/local/bin/libwinpthread-1.dll +0 -0
  1199. data/vendor/local/include/groonga/groonga/conf.h +0 -42
  1200. data/vendor/local/include/msgpack/adaptor/bool_fwd.hpp +0 -39
  1201. data/vendor/local/include/msgpack/adaptor/char_ptr_fwd.hpp +0 -43
  1202. data/vendor/local/include/msgpack/adaptor/cpp11/array_char_fwd.hpp +0 -45
  1203. data/vendor/local/include/msgpack/adaptor/cpp11/array_fwd.hpp +0 -44
  1204. data/vendor/local/include/msgpack/adaptor/cpp11/forward_list_fwd.hpp +0 -44
  1205. data/vendor/local/include/msgpack/adaptor/cpp11/tuple_fwd.hpp +0 -62
  1206. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map_fwd.hpp +0 -53
  1207. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set_fwd.hpp +0 -52
  1208. data/vendor/local/include/msgpack/adaptor/deque_fwd.hpp +0 -40
  1209. data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple_fwd.hpp +0 -4341
  1210. data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple_fwd.hpp +0 -84
  1211. data/vendor/local/include/msgpack/adaptor/fixint_fwd.hpp +0 -100
  1212. data/vendor/local/include/msgpack/adaptor/float_fwd.hpp +0 -44
  1213. data/vendor/local/include/msgpack/adaptor/int_fwd.hpp +0 -100
  1214. data/vendor/local/include/msgpack/adaptor/list_fwd.hpp +0 -40
  1215. data/vendor/local/include/msgpack/adaptor/map_fwd.hpp +0 -69
  1216. data/vendor/local/include/msgpack/adaptor/msgpack_tuple_fwd.hpp +0 -29
  1217. data/vendor/local/include/msgpack/adaptor/nil_fwd.hpp +0 -51
  1218. data/vendor/local/include/msgpack/adaptor/pair_fwd.hpp +0 -42
  1219. data/vendor/local/include/msgpack/adaptor/raw_fwd.hpp +0 -50
  1220. data/vendor/local/include/msgpack/adaptor/set_fwd.hpp +0 -52
  1221. data/vendor/local/include/msgpack/adaptor/string_fwd.hpp +0 -42
  1222. data/vendor/local/include/msgpack/adaptor/tr1/unordered_map_fwd.hpp +0 -75
  1223. data/vendor/local/include/msgpack/adaptor/tr1/unordered_set_fwd.hpp +0 -75
  1224. data/vendor/local/include/msgpack/adaptor/vector_bool_fwd.hpp +0 -40
  1225. data/vendor/local/include/msgpack/adaptor/vector_char_fwd.hpp +0 -42
  1226. data/vendor/local/include/msgpack/adaptor/vector_fwd.hpp +0 -42
  1227. data/vendor/local/include/msgpack_fwd.hpp +0 -28
  1228. data/vendor/local/share/license/msgpack/LICENSE +0 -202
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>7.20. チューニング &mdash; Groonga v5.1.0-71-g748d76eドキュメント</title>
10
+ <title>7.22. チューニング &mdash; Groonga v5.1.2-250-gb1f40beドキュメント</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.1.0-71-g748d76e',
18
+ VERSION: '5.1.2-250-gb1f40be',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,10 +26,10 @@
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.1.0-71-g748d76eドキュメント" href="../index.html" />
29
+ <link rel="top" title="Groonga v5.1.2-250-gb1f40beドキュメント" href="../index.html" />
30
30
  <link rel="up" title="7. リファレンスマニュアル" href="../reference.html" />
31
- <link rel="next" title="7.21. API" href="api.html" />
32
- <link rel="prev" title="7.19. Log" href="log.html" />
31
+ <link rel="next" title="7.23. API" href="api.html" />
32
+ <link rel="prev" title="7.21. Log" href="log.html" />
33
33
  </head>
34
34
  <body role="document">
35
35
  <div class="header">
@@ -56,12 +56,12 @@
56
56
  <a href="../genindex.html" title="総合索引"
57
57
  accesskey="I">索引</a></li>
58
58
  <li class="right" >
59
- <a href="api.html" title="7.21. API"
59
+ <a href="api.html" title="7.23. API"
60
60
  accesskey="N">次へ</a> |</li>
61
61
  <li class="right" >
62
- <a href="log.html" title="7.19. Log"
62
+ <a href="log.html" title="7.21. Log"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.0-71-g748d76eドキュメント</a> &raquo;</li>
64
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.2-250-gb1f40beドキュメント</a> &raquo;</li>
65
65
  <li class="nav-item nav-item-1"><a href="../reference.html" accesskey="U">7. リファレンスマニュアル</a> &raquo;</li>
66
66
  </ul>
67
67
  </div>
@@ -72,21 +72,21 @@
72
72
  <div class="body" role="main">
73
73
 
74
74
  <div class="section" id="tuning">
75
- <h1>7.20. チューニング<a class="headerlink" href="#tuning" title="このヘッドラインへのパーマリンク">¶</a></h1>
75
+ <h1>7.22. チューニング<a class="headerlink" href="#tuning" title="このヘッドラインへのパーマリンク">¶</a></h1>
76
76
  <div class="section" id="summary">
77
- <h2>7.20.1. 概要<a class="headerlink" href="#summary" title="このヘッドラインへのパーマリンク">¶</a></h2>
77
+ <h2>7.22.1. 概要<a class="headerlink" href="#summary" title="このヘッドラインへのパーマリンク">¶</a></h2>
78
78
  <p>大きなデータベースを扱うためのチューニングパラメーターがいくつかあります。</p>
79
79
  </div>
80
80
  <div class="section" id="parameters">
81
- <h2>7.20.2. 引数<a class="headerlink" href="#parameters" title="このヘッドラインへのパーマリンク">¶</a></h2>
81
+ <h2>7.22.2. 引数<a class="headerlink" href="#parameters" title="このヘッドラインへのパーマリンク">¶</a></h2>
82
82
  <p>このセクションではチューニングパラメーターについて説明します。</p>
83
83
  <div class="section" id="the-max-number-of-open-files-per-process">
84
- <span id="tuning-max-n-open-files"></span><h3>7.20.2.1. 1プロセスで開ける最大ファイル数<a class="headerlink" href="#the-max-number-of-open-files-per-process" title="このヘッドラインへのパーマリンク">¶</a></h3>
84
+ <span id="tuning-max-n-open-files"></span><h3>7.22.2.1. 1プロセスで開ける最大ファイル数<a class="headerlink" href="#the-max-number-of-open-files-per-process" title="このヘッドラインへのパーマリンク">¶</a></h3>
85
85
  <p>このパラメーターは大きなデータベースを扱うためのパラメーターです。</p>
86
86
  <p>Groongaは1つのテーブル・カラムごとに1つ以上のファイルを作ります。もし、データベース内にたくさんのテーブル・カラムがある場合は、Groongaプロセスはたくさんのファイルを開く必要があります。</p>
87
87
  <p>システムでは1プロセスごとに開ける最大ファイル数を制限しています。そのため、この制限を緩和する必要があります。</p>
88
88
  <p>Groongaがどのくらいファイルを開くのかを計算する式は次の通りです。:</p>
89
- <div class="highlight-none"><div class="highlight"><pre>3 (for DB) +
89
+ <div class="highlight-none"><div class="highlight"><pre><span></span>3 (for DB) +
90
90
  N tables +
91
91
  N columns (except index clumns) +
92
92
  (N index columns * 2) +
@@ -94,7 +94,7 @@
94
94
  </pre></div>
95
95
  </div>
96
96
  <p>次のスキーマを例として考えます。:</p>
97
- <div class="highlight-none"><div class="highlight"><pre>table_create Entries TABLE_HASH_KEY ShortText
97
+ <div class="highlight-none"><div class="highlight"><pre><span></span>table_create Entries TABLE_HASH_KEY ShortText
98
98
  column_create Entries content COLUMN_SCALAR Text
99
99
  column_create Entries n_likes COLUMN_SCALAR UInt32
100
100
  table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto
@@ -103,7 +103,7 @@ column_create Terms entries_content_index COLUMN_INDEX|WITH_POSITION Entries con
103
103
  </pre></div>
104
104
  </div>
105
105
  <p>この例では少なくとも11ファイル開きます。:</p>
106
- <div class="highlight-none"><div class="highlight"><pre>3 +
106
+ <div class="highlight-none"><div class="highlight"><pre><span></span>3 +
107
107
  2 (Entries and Terms) +
108
108
  2 (Entries.content and Entries.n_likes) +
109
109
  4 (Terms.entries_key_index and Terms.entries_content_index) +
@@ -112,7 +112,7 @@ column_create Terms entries_content_index COLUMN_INDEX|WITH_POSITION Entries con
112
112
  </div>
113
113
  </div>
114
114
  <div class="section" id="memory-usage">
115
- <span id="tuning-memory-usage"></span><h3>7.20.2.2. メモリ使用量<a class="headerlink" href="#memory-usage" title="このヘッドラインへのパーマリンク">¶</a></h3>
115
+ <span id="tuning-memory-usage"></span><h3>7.22.2.2. メモリ使用量<a class="headerlink" href="#memory-usage" title="このヘッドラインへのパーマリンク">¶</a></h3>
116
116
  <p>このパラメーターは大きなデータベースを扱うためのパラメーターです。</p>
117
117
  <p>Groongaはデータベースファイルをメモリー上にマップしてデータベース内のデータにアクセスします。Groongaはすべてのファイルをマップするわけではなく、そのファイルの内容が必要になった段階でマップします。</p>
118
118
  <p>データベース内のすべてのデータにアクセスすると、データベースのすべてのファイルをメモリー上にマップします。もし、データベースファイルの総サイズが6GiBなら、Groongaプロセスも6GiBのメモリーを使います。</p>
@@ -121,59 +121,59 @@ column_create Terms entries_content_index COLUMN_INDEX|WITH_POSITION Entries con
121
121
  </div>
122
122
  </div>
123
123
  <div class="section" id="linux">
124
- <span id="tuning-linux"></span><h2>7.20.3. Linux<a class="headerlink" href="#linux" title="このヘッドラインへのパーマリンク">¶</a></h2>
124
+ <span id="tuning-linux"></span><h2>7.22.3. Linux<a class="headerlink" href="#linux" title="このヘッドラインへのパーマリンク">¶</a></h2>
125
125
  <p>このセクションではLinux上でパラメーターをカスタマイズする方法について説明します。</p>
126
126
  <div class="section" id="nofile">
127
- <span id="tuning-linux-nofile"></span><h3>7.20.3.1. <code class="docutils literal"><span class="pre">nofile</span></code><a class="headerlink" href="#nofile" title="このヘッドラインへのパーマリンク">¶</a></h3>
127
+ <span id="tuning-linux-nofile"></span><h3>7.22.3.1. <code class="docutils literal"><span class="pre">nofile</span></code><a class="headerlink" href="#nofile" title="このヘッドラインへのパーマリンク">¶</a></h3>
128
128
  <p>次の内容の <code class="docutils literal"><span class="pre">/etc/security/limits.d/groonga.conf</span></code> 設定ファイルを作ることで <a class="reference internal" href="#tuning-max-n-open-files"><span>1プロセスで開ける最大ファイル数</span></a> パラメーターの制限を緩和することができます。:</p>
129
- <div class="highlight-none"><div class="highlight"><pre>${USER} soft nofile ${MAX_VALUE}
129
+ <div class="highlight-none"><div class="highlight"><pre><span></span>${USER} soft nofile ${MAX_VALUE}
130
130
  ${USER} hard nofile ${MAX_VALUE}
131
131
  </pre></div>
132
132
  </div>
133
133
  <p>Groongaプロセスを <code class="docutils literal"><span class="pre">groonga</span></code> ユーザーで動かし、Groongaプロセスが10000以下のファイルを開くなら、次の設定を使います。:</p>
134
- <div class="highlight-none"><div class="highlight"><pre>groonga soft nofile 10000
134
+ <div class="highlight-none"><div class="highlight"><pre><span></span>groonga soft nofile 10000
135
135
  groonga hard nofile 10000
136
136
  </pre></div>
137
137
  </div>
138
138
  <p>この設定はGroongaサービスが再起動したあと、あるいは、 <code class="docutils literal"><span class="pre">groonga</span></code> ユーザーがログインし直したときに反映されます。</p>
139
139
  </div>
140
140
  <div class="section" id="vm-overcommit-memory">
141
- <span id="tuning-linux-overcommit-memory"></span><h3>7.20.3.2. <code class="docutils literal"><span class="pre">vm.overcommit_memory</span></code><a class="headerlink" href="#vm-overcommit-memory" title="このヘッドラインへのパーマリンク">¶</a></h3>
141
+ <span id="tuning-linux-overcommit-memory"></span><h3>7.22.3.2. <code class="docutils literal"><span class="pre">vm.overcommit_memory</span></code><a class="headerlink" href="#vm-overcommit-memory" title="このヘッドラインへのパーマリンク">¶</a></h3>
142
142
  <p>これは <a class="reference internal" href="#tuning-memory-usage"><span>メモリ使用量</span></a> 関連のパラメーターです。 <code class="docutils literal"><span class="pre">vm.overcommit_memory</span></code> カーネルパラメーターを <code class="docutils literal"><span class="pre">1</span></code> に設定することで、メモリーとスワップの総量以上のサイズのデータベースを扱うことができます。 <code class="docutils literal"><span class="pre">1</span></code> は「Groongaは常にデータベースファイルをメモリー上にマップできる」という意味です。Groongaはこの設定を推奨しています。</p>
143
143
  <p><code class="docutils literal"><span class="pre">vm.overcommit_memory</span></code> パラメーターの詳細は <a class="reference external" href="https://www.kernel.org/doc/Documentation/vm/overcommit-accounting">overcommitに関するLinuxカーネルのドキュメント</a> を参照してください。</p>
144
144
  <p>次の内容の <code class="docutils literal"><span class="pre">/etc/sysctl.d/groonga.conf</span></code> 設定ファイルを作成することでこの設定をすることができます。:</p>
145
- <div class="highlight-none"><div class="highlight"><pre>vm.overcommit_memory = 1
145
+ <div class="highlight-none"><div class="highlight"><pre><span></span>vm.overcommit_memory = 1
146
146
  </pre></div>
147
147
  </div>
148
148
  <p>設定した内容はシステムを再起動するか、次のコマンドを実行することで反映されます。:</p>
149
- <div class="highlight-none"><div class="highlight"><pre>% sudo sysctl --system
149
+ <div class="highlight-none"><div class="highlight"><pre><span></span>% sudo sysctl --system
150
150
  </pre></div>
151
151
  </div>
152
152
  </div>
153
153
  <div class="section" id="vm-max-map-count">
154
- <span id="tuning-linux-max-map-count"></span><h3>7.20.3.3. <code class="docutils literal"><span class="pre">vm.max_map_count</span></code><a class="headerlink" href="#vm-max-map-count" title="このヘッドラインへのパーマリンク">¶</a></h3>
154
+ <span id="tuning-linux-max-map-count"></span><h3>7.22.3.3. <code class="docutils literal"><span class="pre">vm.max_map_count</span></code><a class="headerlink" href="#vm-max-map-count" title="このヘッドラインへのパーマリンク">¶</a></h3>
155
155
  <p>これは <a class="reference internal" href="#tuning-memory-usage"><span>メモリ使用量</span></a> 関連のパラメーターです。 <code class="docutils literal"><span class="pre">vm.max_map_count</span></code> カーネルパラメーターの値を増やすことで16GiB以上のサイズのデータベースを扱うことができます。このパラメーターはメモリーマップの回数を制限します。</p>
156
156
  <p>このカーネルパラメーターのデフォルト値は <code class="docutils literal"><span class="pre">65530</span></code> か <code class="docutils literal"><span class="pre">65536</span></code> です。Groongaは一度に256KiBずつメモリー上にマップします。データベースが16GiBよりも大きい場合、Groongaはこの制限に達します。( <code class="docutils literal"><span class="pre">256KiB</span> <span class="pre">*</span> <span class="pre">65536</span> <span class="pre">=</span> <span class="pre">16GiB</span></code> )</p>
157
157
  <p>16GiB以上のサイズのデータベースを扱う場合はこのカーネルパラメーターの値を増やす必要があります。たとえば、 <code class="docutils literal"><span class="pre">65536</span> <span class="pre">*</span> <span class="pre">2</span> <span class="pre">=</span> <span class="pre">131072</span></code> まで増やすと32GiBくらいのデータベースを扱うことができます。次の内容の設定ファイルを <code class="docutils literal"><span class="pre">/etc/sysctl.d/groonga.conf</span></code> に置くとこの設定適用できます。:</p>
158
- <div class="highlight-none"><div class="highlight"><pre>vm.max_map_count = 131072
158
+ <div class="highlight-none"><div class="highlight"><pre><span></span>vm.max_map_count = 131072
159
159
  </pre></div>
160
160
  </div>
161
161
  <p>すでに <code class="docutils literal"><span class="pre">vm.overcommit_memory</span></code> の設定があるはずなので、実際の設定ファイルの内容は次のようになることに注意してください。:</p>
162
- <div class="highlight-none"><div class="highlight"><pre>vm.overcommit_memory = 1
162
+ <div class="highlight-none"><div class="highlight"><pre><span></span>vm.overcommit_memory = 1
163
163
  vm.max_map_count = 131072
164
164
  </pre></div>
165
165
  </div>
166
166
  <p>設定した内容はシステムを再起動するか、次のコマンドを実行することで反映されます。:</p>
167
- <div class="highlight-none"><div class="highlight"><pre>% sudo sysctl -p
167
+ <div class="highlight-none"><div class="highlight"><pre><span></span>% sudo sysctl -p
168
168
  </pre></div>
169
169
  </div>
170
170
  </div>
171
171
  </div>
172
172
  <div class="section" id="freebsd">
173
- <h2>7.20.4. FreeBSD<a class="headerlink" href="#freebsd" title="このヘッドラインへのパーマリンク">¶</a></h2>
173
+ <h2>7.22.4. FreeBSD<a class="headerlink" href="#freebsd" title="このヘッドラインへのパーマリンク">¶</a></h2>
174
174
  <p>このセクションではFreeBSD上で引数をカスタマイズする方法を説明します。</p>
175
175
  <div class="section" id="kern-maxfileperproc">
176
- <span id="tuning-freebsd-maxfilesperproc"></span><h3>7.20.4.1. <code class="docutils literal"><span class="pre">kern.maxfileperproc</span></code><a class="headerlink" href="#kern-maxfileperproc" title="このヘッドラインへのパーマリンク">¶</a></h3>
176
+ <span id="tuning-freebsd-maxfilesperproc"></span><h3>7.22.4.1. <code class="docutils literal"><span class="pre">kern.maxfileperproc</span></code><a class="headerlink" href="#kern-maxfileperproc" title="このヘッドラインへのパーマリンク">¶</a></h3>
177
177
  <p>TODO</p>
178
178
  </div>
179
179
  </div>
@@ -187,21 +187,21 @@ vm.max_map_count = 131072
187
187
  <div class="sphinxsidebarwrapper">
188
188
  <h3><a href="../index.html">目次</a></h3>
189
189
  <ul>
190
- <li><a class="reference internal" href="#">7.20. チューニング</a><ul>
191
- <li><a class="reference internal" href="#summary">7.20.1. 概要</a></li>
192
- <li><a class="reference internal" href="#parameters">7.20.2. 引数</a><ul>
193
- <li><a class="reference internal" href="#the-max-number-of-open-files-per-process">7.20.2.1. 1プロセスで開ける最大ファイル数</a></li>
194
- <li><a class="reference internal" href="#memory-usage">7.20.2.2. メモリ使用量</a></li>
190
+ <li><a class="reference internal" href="#">7.22. チューニング</a><ul>
191
+ <li><a class="reference internal" href="#summary">7.22.1. 概要</a></li>
192
+ <li><a class="reference internal" href="#parameters">7.22.2. 引数</a><ul>
193
+ <li><a class="reference internal" href="#the-max-number-of-open-files-per-process">7.22.2.1. 1プロセスで開ける最大ファイル数</a></li>
194
+ <li><a class="reference internal" href="#memory-usage">7.22.2.2. メモリ使用量</a></li>
195
195
  </ul>
196
196
  </li>
197
- <li><a class="reference internal" href="#linux">7.20.3. Linux</a><ul>
198
- <li><a class="reference internal" href="#nofile">7.20.3.1. <code class="docutils literal"><span class="pre">nofile</span></code></a></li>
199
- <li><a class="reference internal" href="#vm-overcommit-memory">7.20.3.2. <code class="docutils literal"><span class="pre">vm.overcommit_memory</span></code></a></li>
200
- <li><a class="reference internal" href="#vm-max-map-count">7.20.3.3. <code class="docutils literal"><span class="pre">vm.max_map_count</span></code></a></li>
197
+ <li><a class="reference internal" href="#linux">7.22.3. Linux</a><ul>
198
+ <li><a class="reference internal" href="#nofile">7.22.3.1. <code class="docutils literal"><span class="pre">nofile</span></code></a></li>
199
+ <li><a class="reference internal" href="#vm-overcommit-memory">7.22.3.2. <code class="docutils literal"><span class="pre">vm.overcommit_memory</span></code></a></li>
200
+ <li><a class="reference internal" href="#vm-max-map-count">7.22.3.3. <code class="docutils literal"><span class="pre">vm.max_map_count</span></code></a></li>
201
201
  </ul>
202
202
  </li>
203
- <li><a class="reference internal" href="#freebsd">7.20.4. FreeBSD</a><ul>
204
- <li><a class="reference internal" href="#kern-maxfileperproc">7.20.4.1. <code class="docutils literal"><span class="pre">kern.maxfileperproc</span></code></a></li>
203
+ <li><a class="reference internal" href="#freebsd">7.22.4. FreeBSD</a><ul>
204
+ <li><a class="reference internal" href="#kern-maxfileperproc">7.22.4.1. <code class="docutils literal"><span class="pre">kern.maxfileperproc</span></code></a></li>
205
205
  </ul>
206
206
  </li>
207
207
  </ul>
@@ -210,10 +210,10 @@ vm.max_map_count = 131072
210
210
 
211
211
  <h4>前のトピックへ</h4>
212
212
  <p class="topless"><a href="log.html"
213
- title="前の章へ">7.19. Log</a></p>
213
+ title="前の章へ">7.21. Log</a></p>
214
214
  <h4>次のトピックへ</h4>
215
215
  <p class="topless"><a href="api.html"
216
- title="次の章へ">7.21. API</a></p>
216
+ title="次の章へ">7.23. API</a></p>
217
217
  <div role="note" aria-label="source link">
218
218
  <h3>このページ</h3>
219
219
  <ul class="this-page-menu">
@@ -245,17 +245,17 @@ vm.max_map_count = 131072
245
245
  <a href="../genindex.html" title="総合索引"
246
246
  >索引</a></li>
247
247
  <li class="right" >
248
- <a href="api.html" title="7.21. API"
248
+ <a href="api.html" title="7.23. API"
249
249
  >次へ</a> |</li>
250
250
  <li class="right" >
251
- <a href="log.html" title="7.19. Log"
251
+ <a href="log.html" title="7.21. Log"
252
252
  >前へ</a> |</li>
253
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.0-71-g748d76eドキュメント</a> &raquo;</li>
253
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.2-250-gb1f40beドキュメント</a> &raquo;</li>
254
254
  <li class="nav-item nav-item-1"><a href="../reference.html" >7. リファレンスマニュアル</a> &raquo;</li>
255
255
  </ul>
256
256
  </div>
257
257
  <div class="footer" role="contentinfo">
258
- &copy; Copyright 2009-2015, Brazil, Inc.
258
+ &copy; Copyright 2009-2016, Brazil, Inc.
259
259
  </div>
260
260
  </body>
261
261
  </html>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>7.4. データ型 &mdash; Groonga v5.1.0-71-g748d76eドキュメント</title>
10
+ <title>7.4. データ型 &mdash; Groonga v5.1.2-250-gb1f40beドキュメント</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.1.0-71-g748d76e',
18
+ VERSION: '5.1.2-250-gb1f40be',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,10 +26,10 @@
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.1.0-71-g748d76eドキュメント" href="../index.html" />
29
+ <link rel="top" title="Groonga v5.1.2-250-gb1f40beドキュメント" href="../index.html" />
30
30
  <link rel="up" title="7. リファレンスマニュアル" href="../reference.html" />
31
31
  <link rel="next" title="7.5. テーブル" href="tables.html" />
32
- <link rel="prev" title="7.3.55. truncate" href="commands/truncate.html" />
32
+ <link rel="prev" title="7.3.63. truncate" href="commands/truncate.html" />
33
33
  </head>
34
34
  <body role="document">
35
35
  <div class="header">
@@ -59,9 +59,9 @@
59
59
  <a href="tables.html" title="7.5. テーブル"
60
60
  accesskey="N">次へ</a> |</li>
61
61
  <li class="right" >
62
- <a href="commands/truncate.html" title="7.3.55. truncate"
62
+ <a href="commands/truncate.html" title="7.3.63. truncate"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.0-71-g748d76eドキュメント</a> &raquo;</li>
64
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.2-250-gb1f40beドキュメント</a> &raquo;</li>
65
65
  <li class="nav-item nav-item-1"><a href="../reference.html" accesskey="U">7. リファレンスマニュアル</a> &raquo;</li>
66
66
  </ul>
67
67
  </div>
@@ -155,7 +155,7 @@
155
155
  <p>測地系の詳細については、 <a class="reference external" href="http://ja.wikipedia.org/wiki/%E6%B8%AC%E5%9C%B0%E7%B3%BB">測地系 - Wikipedia</a> を参照してください。</p>
156
156
  </div>
157
157
  <div class="section" id="wgs84geopoint">
158
- <span id="builtin-type-wgs84-geo-pointer"></span><h3>7.4.3.16. <code class="docutils literal"><span class="pre">WGS84GeoPoint</span></code><a class="headerlink" href="#wgs84geopoint" title="このヘッドラインへのパーマリンク">¶</a></h3>
158
+ <span id="builtin-type-wgs84-geo-point"></span><h3>7.4.3.16. <code class="docutils literal"><span class="pre">WGS84GeoPoint</span></code><a class="headerlink" href="#wgs84geopoint" title="このヘッドラインへのパーマリンク">¶</a></h3>
159
159
  <p>世界測地系(World Geodetic System, WGS 84)による経緯度であり、経度と緯度をミリ秒単位で表現した整数の組により表現します。(デフォルト値: 0x0)</p>
160
160
  <p>度分秒形式からミリ秒形式への変換方法や <a class="reference internal" href="commands/load.html"><em>load</em></a> コマンドにおける指定方法はTokyoGeoPointと同じです。</p>
161
161
  </div>
@@ -215,7 +215,7 @@
215
215
 
216
216
  <h4>前のトピックへ</h4>
217
217
  <p class="topless"><a href="commands/truncate.html"
218
- title="前の章へ">7.3.55. <code class="docutils literal"><span class="pre">truncate</span></code></a></p>
218
+ title="前の章へ">7.3.63. <code class="docutils literal"><span class="pre">truncate</span></code></a></p>
219
219
  <h4>次のトピックへ</h4>
220
220
  <p class="topless"><a href="tables.html"
221
221
  title="次の章へ">7.5. テーブル</a></p>
@@ -253,14 +253,14 @@
253
253
  <a href="tables.html" title="7.5. テーブル"
254
254
  >次へ</a> |</li>
255
255
  <li class="right" >
256
- <a href="commands/truncate.html" title="7.3.55. truncate"
256
+ <a href="commands/truncate.html" title="7.3.63. truncate"
257
257
  >前へ</a> |</li>
258
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.0-71-g748d76eドキュメント</a> &raquo;</li>
258
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.2-250-gb1f40beドキュメント</a> &raquo;</li>
259
259
  <li class="nav-item nav-item-1"><a href="../reference.html" >7. リファレンスマニュアル</a> &raquo;</li>
260
260
  </ul>
261
261
  </div>
262
262
  <div class="footer" role="contentinfo">
263
- &copy; Copyright 2009-2015, Brazil, Inc.
263
+ &copy; Copyright 2009-2016, Brazil, Inc.
264
264
  </div>
265
265
  </body>
266
266
  </html>
@@ -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.1.0-71-g748d76eドキュメント</title>
10
+ <title>検索 &mdash; Groonga v5.1.2-250-gb1f40beドキュメント</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.1.0-71-g748d76e',
18
+ VERSION: '5.1.2-250-gb1f40be',
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.1.0-71-g748d76eドキュメント" href="index.html" />
30
+ <link rel="top" title="Groonga v5.1.2-250-gb1f40beドキュメント" href="index.html" />
31
31
  <script type="text/javascript">
32
32
  jQuery(function() { Search.loadIndex("searchindex.js"); });
33
33
  </script>
@@ -60,7 +60,7 @@
60
60
  <li class="right" style="margin-right: 10px">
61
61
  <a href="genindex.html" title="総合索引"
62
62
  accesskey="I">索引</a></li>
63
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.0-71-g748d76eドキュメント</a> &raquo;</li>
63
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.2-250-gb1f40beドキュメント</a> &raquo;</li>
64
64
  </ul>
65
65
  </div>
66
66
 
@@ -104,11 +104,11 @@
104
104
  <li class="right" style="margin-right: 10px">
105
105
  <a href="genindex.html" title="総合索引"
106
106
  >索引</a></li>
107
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.0-71-g748d76eドキュメント</a> &raquo;</li>
107
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.2-250-gb1f40beドキュメント</a> &raquo;</li>
108
108
  </ul>
109
109
  </div>
110
110
  <div class="footer" role="contentinfo">
111
- &copy; Copyright 2009-2015, Brazil, Inc.
111
+ &copy; Copyright 2009-2016, Brazil, Inc.
112
112
  </div>
113
113
  </body>
114
114
  </html>
@@ -1 +1 @@
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/pretty_print","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/reindex","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/prefix_rk_search","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/operations/prefix_rk_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/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":[135,0,1,"cmdoption--address"],"--bind-address":[135,0,1,"cmdoption--bind-address"],"--cache-limit":[135,0,1,"cmdoption--cache-limit"],"--config-path":[135,0,1,"cmdoption--config-path"],"--daemon":[141,0,1,"cmdoption--daemon"],"--default-match-escalation-threshold":[135,0,1,"cmdoption--default-match-escalation-threshold"],"--dir":[136,0,1,"cmdoption--dir"],"--disable-max-fd-check":[140,0,1,"cmdoption--disable-max-fd-check"],"--document-root":[135,0,1,"cmdoption--document-root"],"--encoding":[135,0,1,"cmdoption--encoding"],"--ftp":[136,0,1,"cmdoption--ftp"],"--groonga":[136,0,1,"cmdoption--groonga"],"--help":[135,0,1,"cmdoption--help"],"--host":[136,0,1,"cmdoption--host"],"--log-base-path":[141,0,1,"cmdoption--log-base-path"],"--log-level":[141,0,1,"cmdoption--log-level"],"--log-output-dir":[136,0,1,"cmdoption--log-output-dir"],"--log-path":[141,0,1,"cmdoption--log-path"],"--log-rotate-threshold-size":[135,0,1,"cmdoption--log-rotate-threshold-size"],"--max-threads":[135,0,1,"cmdoption--max-threads"],"--n-lines-per-log-file":[140,0,1,"cmdoption--n-lines-per-log-file"],"--n-threads":[140,0,1,"cmdoption--n-threads"],"--pid-path":[135,0,1,"cmdoption--pid-path"],"--port":[140,0,1,"cmdoption--port"],"--protocol":[136,0,1,"cmdoption--protocol"],"--query-log-path":[135,0,1,"cmdoption--query-log-path"],"--query-log-rotate-threshold-size":[135,0,1,"cmdoption--query-log-rotate-threshold-size"],"--receive-endpoint":[141,0,1,"cmdoption--receive-endpoint"],"--send-endpoint":[141,0,1,"cmdoption--send-endpoint"],"--server-id":[135,0,1,"cmdoption--server-id"],"-P":[134,0,1,"cmdoption-P"],"-a":[135,0,1,"cmdoption-a"],"-c":[135,0,1,"cmdoption-c"],"-d":[141,0,1,"cmdoption-d"],"-e":[135,0,1,"cmdoption-e"],"-h":[135,0,1,"cmdoption-h"],"-i":[136,0,1,"cmdoption-i"],"-l":[141,0,1,"cmdoption-l"],"-m":[134,0,1,"cmdoption-m"],"-n":[135,0,1,"cmdoption-n"],"-p":[140,0,1,"cmdoption-p"],"-r":[141,0,1,"cmdoption-r"],"-s":[141,0,1,"cmdoption-s"],"-t":[140,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:[135,0,1,"cmdoption-arg-command"],db:[136,0,1,"cmdoption-arg-db"],dest:[135,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_is_opened:[50,1,1,"c.grn_ctx_is_opened"],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_cast_by_id:[60,1,1,"c.grn_obj_cast_by_id"],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_plugin_windows_base_dir:[69,1,1,"c.grn_plugin_windows_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:[136,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:{"!!":[96,137,183,203,207],"!(n":161,"!)":137,"!\"":[39,78,104,119,129,137,160,161,162,172,183,189,201,203,204,206,207,208],"!\\":161,"!condition":161,"!xxx":41,"#'":135,"#[":33,"#arguments":33,"#command":33,"#delete":33,"#each":33,"#groonga":[170,207],"#group":33,"#index":33,"#inspect":33,"#key":33,"#name":33,"#proxy":137,"#remove":33,"#scalar":33,"#set":136,"#value":33,"#vector":33,"#with":33,"#worker":137,"#{":163,"#{l":163,"$(":[24,25,26,27,30],"$groonga":12,"$home":12,"$prefix":37,"${":[17,104,119,154,161,171,175,184],"%'":41,"%\"":171,"%\\":31,"%post":39,"& (":161,"& _":211,"& b":161,"& x":41,"& y":40,"&!":161,"&&":[33,119,157,161,198,209],"&..":208,"&arg":171,"&filter":116,"&gt":[148,149,156],"&lt":[148,149,156],"&q":140,"&query":208,"&request":116,"&s":140,"'(":135,"')":[41,96,134,135],"',":[41,60,139,180],"'-":[40,135],"'.":[17,60],"'..":40,"';":135,"'='":135,"'>":150,"'\"":[39,40],"'\u3002":135,"'alice":160,"'column":39,"'config":135,"'fixed":33,"'grn":52,"'hay":11,"'haystack":11,"'ja":17,"'localhost":[134,135],"'m":[162,182,206,207],"'mroonga":154,"'n":135,"'needle":11,"'now":207,"'or":39,"'pid":135,"'query":39,"'s":[17,78,96,104,119,135,157,160,161,162,163,187],"'t":[45,49,50,51,53,60,135,137,180],"'user":154,"'ve":207,"'vector":33,"(!":11,"(&":[33,50,53],"('":[73,86,96,135,204],"((":[75,119],"((x":185,"()":[],"(-":161,"(.":12,"(..":40,"(<":11,"(=":[11,81,161],"(>":11,"(?":33,"([":155,"(\"":[39,40,52,116,135,145,148,149,154,156,204],"(\u300c":12,"(_":[33,122,153,161,177,178,180],"(a":21,"(age":143,"(argument":161,"(arugment":161,"(body":[148,149],"(byte":[47,63],"(cmp":41,"(column":[41,143,148,153,156,172,173,174],"(comments":157,"(content":[119,150,156,172],"(ctx":[11,46,47,50,53],"(cutter":14,"(cve":41,"(database":199,"(debian":193,"(default":33,"(drilldown":73,"(fedora":193,"(get":134,"(grn":[33,50,53],"(groonga":65,"(html":150,"(index":[173,174],"(init":50,"(int":65,"(keyword":53,"(location":[145,203,207,211],"(match":154,"(message":[173,174],"(mroonga":170,"(msghdr":33,"(name":69,"(news":12,"(nginx":193,"(null":41,"(packages":12,"(point":[145,146,147],"(popular":119,"(pos":[146,147],"(ptr":35,"(q":65,"(r":[136,171],"(readings":153,"(scan":14,"(scope":157,"(score":33,"(select":161,"(string":144,"(tab":170,"(table":41,"(tag":151,"(tags":158,"(target":[151,158],"(text":149,"(title":[40,144,172],"(uint":65,"(void":65,"(wgs":211,"(windows":136,"(x":41,"(xxx":40,"({":140,")'":[122,148,149,156,157,158,160,161,177,178,180,203,207,211],"))":[33,119,161,170],"),":[40,86],")-":12,").":[12,135,140,156,193],")..":12,")/":33,"):":[12,193,204],");":[11,33,46,47,50,53,65],")=":199,")\"":[40,119,150,156,160,171,172,173,174,210],")\\":171,")\u3001":41,")\u300d":135,")\u3059\u3079\u3066":143,")]":40,")disk":171,")grn":33,")groonga":170,")hello":33,")mroonga":170,")offset":[63,64],")senna":170,"*'":[104,119],"**":[47,51,60,61,64,99],"***":99,"*/":[50,53,65,68],"*\"":[33,36,41,104,119,206],"*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,"*destination":60,"*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,"*source":60,"*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":185,"++":[0,6,7,12,24,26,28,33,37,38,41,50,53,65,135,187],"+-":[53,137],"+a":160,"+c":135,"+ff":[33,164],"+ff0":33,"+ffef":183,"+fff":183,"+fffe":129,"+or":171,", \"":[75,148,206],", {":[137,189],",'":[185,201],",*":103,",.":12,",..":[96,124],",[":198,",[\"":198,",\"":[33,41,83,94,168,203,206,207],",\"domain":202,",\"http":201,",\"link":201,",\"links":201,",\"location":[203,211],",\"tags":203,",\"title":204,",\\\"":96,",\n#":[75,90,104,119,125,127,129,154,160,161,172,183,201,203,204,207,208,211],",\n[":[33,94,156],",\n]":[119,157,198,201,209,211],",\n{":[75,94,101,104,119,122,137,151,153,154,157,160,161,164,167,171,172,173,174,177,178,180,182,202,206,209],",_":[75,104,119,122,154,161,202,203,204,207,211],",{":[79,135,136,168],"- \"":41,"-(":[12,161],"-+":137,"--":[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,101,104,115,119,125,127,129,135,136,137,148,149,150,151,153,154,156,158,161,170,171,172,173,174,180,182,198,202,203,207,210,211],"->":[33,35,125],"-\"":127,"-_":[119,172,173,174],"-a":[39,135,160],"-add":51,"-address":[33,37,39,135],"-adjuster":[75,119],"-admin":39,"-aki":41,"-analyzer":[37,39],"-api":16,"-apt":30,"-autoreconf":12,"-base":[140,141],"-benchmark":[],"-binary":[137,189],"-bind":[33,37,39,135],"-blog":207,"-bugs":33,"-build":14,"-bye":[104,119,127,160,161,182],"-c":[24,26,135,195],"-cache":[33,40,135],"-check":[35,37,140],"-chroot":12,"-ci":[40,41],"-ci\u4e0a":40,"-client":187,"-code":[12,41],"-command":[],"-commnad":77,"-common":[30,39],"-conditional":37,"-config":[28,33,34,35,37,39,135],"-create":[],"-cutter":12,"-d":[135,137,140,141,192,195,208],"-daemon":[140,141],"-databases":[87,89,124,126,140,195,204,208],"-dataset":[],"-db":38,"-dcmake":[7,8],"-dd":[161,163],"-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":136,"-directory":39,"-disable":[35,37,41,140],"-doc":38,"-document":[],"-docutils":12,"-drilldown":[33,41,104,119,202],"-dump":33,"-e":135,"-each":37,"-eanble":6,"-efficient":75,"-enable":[3,6,18,35],"-encoding":[],"-encodiong":161,"-endpoint":[140,141],"-escalation":[],"-essential":[25,30],"-event":33,"-existence":40,"-fd":[37,140],"-file":[33,37,78,135,140],"-files":[],"-filter":[25,30,33,37,39,41,75,119,142,149,154,156,157,161,171,207,209],"-frequency":37,"-ftp":136,"-full":12,"-g":[8,31],"-get":[12,18,25,30,39],"-gobject":33,"-gqtp":[],"-gram":[0,129,161,196,198,204],"-groonga":[12,13,136,207],"-h":[135,137,189],"-help":[],"-history":37,"-host":136,"-html":[35,39],"-http":[],"-httpd":[],"-i":[33,135,136],"-id":[39,116,135],"-idf":[172,173,174],"-in":[12,60],"-index":33,"-inverse":[172,174],"-ipadic":[26,183],"-j":[6,7,28],"-jemalloc":41,"-jinja":12,"-jp":[40,183],"-jumandic":26,"-key":[12,38],"-keyring":[25,39],"-keys":12,"-known":156,"-l":[135,140,141,163],"-latest":[],"-launchpad":12,"-leak":35,"-leaner":141,"-learner":[],"-level":[33,41,135,141],"-libedit":35,"-libevent":38,"-libstemmer":41,"-limit":[33,34,40,119,135],"-line":21,"-lines":[37,140],"-localstatedir":[],"-log":[],"-lz4":[],"-lzo":86,"-m":134,"-match":[],"-max":[37,135,140],"-mecab":[24,25,26,27,30,39,40,41],"-memory":35,"-message":[],"-mm":[161,163],"-mode":17,"-mruby":[6,12,41],"-msgpack":189,"-munin":[],"-mysql":[24,25,26,30,107,164],"-n":[37,135,140,204],"-neologd":183,"-node":24,"-normalizer":[24,25,26,30,33,39,107,153,164],"-offset":[33,119],"-org":12,"-oriented":156,"-output":[33,39,40,119,136,148,149,150,156],"-p":[134,135,136,140,195,208],"-pack":[],"-package":[],"-packages":12,"-patch":17,"-path":[],"-per":[37,140],"-pgp":12,"-pid":[33,37,135],"-pip":18,"-platform":[],"-plugin":13,"-plugins":[],"-po":[],"-point":185,"-port":[135,136,140],"-prefix":[],"-properties":30,"-protocol":[135,136,138,192,208],"-query":[33,37,39,40,41,135,137,148,149,154,156,160,163,170,193,204,207,209],"-r":[140,141],"-receive":[140,141],"-release":[],"-repository":[12,30,39],"-root":[35,135,138],"-rotate":[33,135],"-rpm":12,"-rroonga":46,"-ruby":[6,12,39],"-s":[135,140,141,195],"-scorer":142,"-search":[41,183],"-searchu":183,"-secret":12,"-send":[140,141],"-separated":33,"-server":[],"-size":[33,135],"-sortby":40,"-source":12,"-sphinx":[12,18],"-src":[12,25],"-static":37,"-stem":[25,30,41],"-strings":38,"-suggest":[],"-t":[135,140],"-talk":[2,12,33,40],"-tar":29,"-terminated":[61,69],"-test":[12,14],"-text":183,"-threads":[135,140],"-threshold":[],"-time":156,"-token":[25,30,41],"-tokenizer":[24,25,26,30,39,40],"-type":[37,137,177,178,180,189],"-unauthenticated":[25,39],"-uploader":12,"-use":33,"-values":33,"-version":[],"-w":12,"-windows":33,"-with":[],"-wno":37,"-word":119,"-working":39,"-x":[12,40],"-yyy":17,"-z":140,"-za":140,"-zlib":[],".$":[104,119],".'":[39,40,86],".(":12,".)":[40,60,161,163,172,184],".,":[119,151],".-":17,"..":[6,7,17,39,40,65,69,75,80,83,87,96,105,116,119,122,123,135,137,138,151,154,160,161,171,172,173,174,189,204],"...":[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,79,83,116,119,122,124,135,136,137,138,140,148,157,160,161,162,168,171,175,207],"./":[17,28],".:":[140,141],".>":175,".\"":[119,148,149,154,156,161,162,172,183,201,203,204,208,210],".]":[75,83,116,122,124,161],"._":[40,41,60,104,119,125,160,161,201,202],".age":95,".am":18,".am\u30d5\u30a1\u30a4\u30eb":12,".asc":12,".askmonty":41,".blog":198,".body":[84,92,210],".builtin":51,".c":[42,90,119,125],".clean":12,".co":[42,119],".column":[40,41,85,95],".com":[6,7,8,12,13,17,21,201,202,204,208,211],".comment":[206,207],".conf":[33,137,184,193,199],".content":[104,119,125,157,160,161,162,184,206],".context":125,".created":104,".current":33,".d":[25,184,199],".db":[40,135,195,204,208],".ddl":136,".deb":12,".debian":12,".description":207,".dll":69,".domain":33,".dump":37,".en":12,".entries":184,".entry":115,".exe":31,".fedoraproject":24,".flags":63,".garbage":40,".git":[6,7,8,12,13,17],".github":17,".gpg":12,".grn":[94,137],".groonga":[12,17,24,25,26,27,28,29,30,31,136],".group":157,".gz":[12,17,24,25,26,27,28,29,30],".h":[16,33,69],".hash":207,".high":85,".html":[12,17,135,137],".htpasswd":[137,189],".i":24,".index":[33,95,115],".jp":[12,33,42,119],".js":12,".js\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":21,".json":[137,168],".kentaro":40,".key":[63,125],".label":[119,153],".list":[12,25],".load":136,".location":207,".log":[28,33,77,135,136,137,193],".logs":115,".md":12,".md\u30d5\u30a1\u30a4\u30eb":12,".me":[2,12,33],".mo\u30d5\u30a1\u30a4\u30eb":17,".msgpack":168,".n":[51,104,119,160,161,184],".name":[83,157,207],".ncpu":27,".ne":42,".nested":119,".net":[2,12,201,202,203,204,208,211],".nginx":137,".o":203,".offset":63,".org":[12,17,24,25,26,27,28,29,30,31,33,41,46,75,94,136,137,150,201,202,203,204,208,211],".osdn":[2,12],".output":138,".overcommit":[],".patch":17,".pc":[36,37],".php":12,".pid":135,".po":[],".po\u30d5\u30a1\u30a4\u30eb":[],".posted":207,".rb":[35,41,104,118],".readings":153,".reference":125,".repoforge":24,".roonga":[160,161],".rpm":[24,26],".score":131,".scr":136,".select":[136,161],".serial":85,".service":39,".set":104,".sh":[6,12,14,17,21,39],".site":115,".so":[110,111,114],".source":33,".sourceforge":[2,12],".spec":37,".ssssss":163,".status":136,".sub":[104,119],".synonym":119,".t":183,".tag":[85,104,119],".tar":17,".timestamp":109,".title":[97,115,125,201],".to":85,".travis":21,".tsv":[168,170],".txt":[12,183],".uuuuuu":161,".value":119,".weight":40,".x":24,".xml":168,".yml":21,".zip":17,".}":[75,83,161],"/ '":60,"/#":46,"/$":17,"/'":41,"/(":12,"/*":[16,17,50,65,68,137,193,199],"/+":12,"/.":37,"/..":[12,137],"/;":137,"/?":140,"/\"":[75,183,201,202,203,204,208,211],"/\u65e5":207,"/\u6708":207,"/\uff09":35,"/_":12,"/aba":[202,204,211],"/acccess":193,"/admin":[37,135],"/afr":[202,204,211],"/alice":183,"/api":189,"/apt":[12,25],"/archive":12,"/atv":[202,204,211],"/base":12,"/bc":12,"/bin":28,"/blog":12,"/branches":14,"/c":[0,6,7,16,187],"/cache":137,"/centos":[12,24,193],"/command":[14,137,138,171,208],"/commands":[41,87,89,124,126],"/commits":41,"/context":104,"/copyright":41,"/coremodule":137,"/cpuinfo":[24,25,26,30],"/cutter":12,"/d":[41,137,171,189],"/data":21,"/database":[137,189],"/db":[94,122,133,137,141,171,193],"/db1":189,"/db2":189,"/dd":161,"/debian":[12,25],"/default":[39,193],"/dev":12,"/dictionary":35,"/disk":171,"/doc":12,"/docs":137,"/en":[12,18,137],"/en\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0":2,"/epel":24,"/etc":[12,25,39,137,170,184,193,199],"/eval":117,"/f":12,"/false":[34,201],"/fedora":[26,35,39],"/files":[12,18],"/function":12,"/functions":14,"/gat":[202,204,211],"/gqtp":[40,193],"/grntest":12,"/groonga":[6,7,8,12,13,16,17,21,24,25,26,27,28,29,30,31,33,35,37,39,40,87,89,110,111,114,124,126,133,135,137,140,170,184,193,195,204,208],"/header":29,"/hoge":135,"/home":183,"/homebrew":12,"/hostname":[135,136],"/hosts":12,"/html":[17,18,37,189],"/http":[137,193],"/httpd":[137,193],"/in":33,"/index":[12,17,135],"/introduction":[195,204,208],"/ja":[12,17,46],"/ja\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0":2,"/javascript":37,"/json":[37,137,189],"/key":60,"/kytea":129,"/lc":[12,17],"/lib":[110,111,114,133,137,193],"/limits":184,"/linux":[],"/lists":12,"/load":[118,137,189],"/local":[6,7,12,28,137],"/locale":[12,17,18],"/log":[28,33,135,137,140,193],"/lzo":[35,37,40],"/mailarchive":12,"/managers":[137,189],"/master":[17,21],"/max":41,"/meetup":33,"/message":12,"/mm":161,"/modules":[35,137],"/mrb":104,"/munin":28,"/mxcl":12,"/news":12,"/nfs":28,"/ngx":137,"/non":40,"/null":[6,7,34],"/o":123,"/other":137,"/packages":12,"/php":33,"/pipermail":41,"/plain":33,"/plugins":[28,35,40,110,111,114],"/ppa":[12,30],"/projects":12,"/pub":24,"/pull":12,"/query":[110,111,114],"/rab":[202,204,211],"/raw":21,"/repositories":12,"/request":116,"/result":38,"/rpmforge":24,"/rroonga":41,"/run":[12,14,135],"/rurema":41,"/sbin":27,"/scripts":104,"/security":184,"/select":[116,137,208],"/setup":21,"/share":[37,135],"/shutdown":[135,137,189],"/source":[12,16,17,18,24,25,26,27,28,29,30,31],"/sources":[12,25],"/span":[148,149,156],"/srpm":12,"/status":[134,137,168,189,208],"/stem":182,"/stop":[94,127,182],"/synonyms":170,"/sysconfig":193,"/sysctl":[27,184,199],"/tab":33,"/test":183,"/tmp":[6,7,170,189],"/to":[137,189],"/travis":21,"/tsv":[110,111,114,170],"/ubuntu":[12,39,193],"/unit":14,"/usr":[28,135],"/var":[28,33,133,135,137,193],"/vdw":[202,204,211],"/vector":[33,158],"/version":33,"/wgs":211,"/windows":[12,31],"/work":12,"/x":189,"/xml":189,"/yum":12,"/~":12,"0c":183,"0e":136,"0mq":40,"0x":[38,160,185,195,201],"0xc":195,"10":[136,204],"11":[75,119,154,161,184,198],"1\u305a":[73,77],"1\u3064":[10,32,37,40,41,53,71,75,82,85,87,95,97,102,104,105,109,110,111,114,115,116,117,118,119,122,123,125,128,129,131,136,137,149,151,153,154,156,157,160,161,171,172,173,174,175,179,181,183,184,189,195,201,203,206,207],"1\u30f6\u6708":175,"1\u4ef6":[198,207],"1\u5ea6":68,"1\u6708":[161,185,201,207],"1\u884c":136,"1byte":195,"1f":33,"1g":[25,30],"1gb":33,"1o":171,"2\u3064":[19,24,25,26,30,33,40,41,86,87,95,101,102,103,104,106,119,123,126,127,128,144,153,154,157,160,171,172,173,180,183,188,189,193,201,202,204,206,207],"2\u3064\u3081":[116,160,189,206],"2\u5104":[],"2\u6708":101,"2byte":195,"2grn":41,"3\u3064":[14,40,78,89,101,107,119,148,156,159,201,202,204,206],"3ki":35,"4\u3064":[85,135,156,172,181],"4byte":195,"4e":199,"4gbyte":32,"4gib":[181,195],"4kib":33,"5\u3064":143,"5f":136,"6elz":41,"6fd":121,"6gib":184,"7\u3064":121,"7\u6708":33,"7e":136,"7f":121,"8bit":185,"8byte":195,"8r":[28,39,135],"9\u3064":204,"9e":164,"9f":168,": n":134,":!":160,":#":41,":#{":163,":$":[18,160,161,209],":')":86,":..":119,":/":[12,13,17,21,24,25,26,27,28,29,30,31,41,46,75,94,116,134,135,137,138,140,150,168,189,201,202,203,204,208,211],"::":[33,81,104,168],":<":[119,160],":=":[119,160],":>":[119,160],":@":[119,154,160,201,203,204,207,208],":[":[136,171],":\"":[53,171,204],":\\":[8,31,171],":\\\"":96,":\u5206":207,":\u79d2":207,":^":[160,209],":bob":207,":byte":66,":clear":12,":groonga":[6,7,8,12,30,119,160],":mm":[161,163],":order":33,":port":[135,137,138],":set":41,":ss":[161,163],":value":[119,160],":~":[160,171],";/":[148,149],";\"":39,";b":[148,149],";rroonga":[148,149],"< n":161,"< t1":11,"< y":40,"<#{":163,"<-":189,"<..":175,"</":[148,149,150,156,168],"<=":[40,137,161,207],"<directory":141,"<encoding":135,"<endpoint":141,"<gqtp":136,"<groonga":136,"<ip":[135,136],"<level":141,"<limit":135,"<log":135,"<max":135,"<path":[135,141],"<port":[135,136],"<protocol":135,"<span":[148,149,156],"<threshold":135,"= '":[],"= \"":[41,101,119,161],"= n":161,"= y":40,"=$":[12,17,28],"='":150,"=(":12,"=)":11,"=-":28,"=..":12,"=/":[6,7,12,14,28,135,170],"==":161,"=\"":[29,104,119,148,149,156,168],"=\\":[148,149,150,156],"=_":103,"=`":18,"=add":129,"=allow":119,"=arg":171,"=ascending":103,"=c":[8,31],"=complete":140,"=dat":38,"=encoding":[],"=fedora":12,"=g":140,"=get":127,"=gr":140,"=gro":140,"=groo":140,"=groonga":[137,140],"=grooon":140,"=i":12,"=largetable":116,"=message":[],"=no":103,"=none":[104,107,119,127,129],"=null":[82,95,97,102,103,104,115,119,123,128,129],"=number":[],"=on":[7,8],"=pat":38,"=path":[],"=platform":[],"=query":140,"=r":39,"=redhat":28,"=site":208,"=sjis":28,"=squeeze":12,"=submit":140,"=table":123,"=title":208,"=true":116,"=unique":116,"=users":[137,189],"=yes":[12,14,33,38,40,95,119],"> \"":33,"> y":40,">#{":163,">.":[148,149],">:":104,"><":[53,168],">=":[40,161],">>":[40,161],">\"":[40,90,104,119,125,148,150],">\n<":168,">alloc":168,">cache":168,">command":168,">default":168,">max":168,">n":168,">rroonga":[148,149],">starttime":168,">uptime":168,">version":168,"??":119,"?arg":171,"?argument":138,"?i":171,"?id":116,"?max":33,"?msg":12,"?parameter":137,"?table":[116,137,189,208],"@'":204,"@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],"@~":171,"[#":[37,38,39,41],"[$":[],"[(":171,"[,":146,"[2":135,"[:":208,"[@":[37,39,40,41],"[[":[75,85,89,93,101,116,117,118,119,124,126,127,131,135,140,143,145,148,149,153,156,160,161,162,172,177,182,198,201,203,206,207,209],"[[\"":83,"[\"":[33,75,83,87,119,122,156,158,161,177,198,201,203,207],"[\u8a9e":83,"[a":140,"[admin":[37,39,40],"[api":33,"[apt":39,"[args":135,"[backslash":160,"[benchmark":41,"[bernard":33,"[bindings":33,"[cmake":33,"[column":41,"[dat":[38,39],"[dd":171,"[deb":[33,37,39,40,41],"[doc":[33,37,38,39,40,41],"[dump":[39,40,41],"[element":[75,161],"[example":[33,41],"[fedora":[39,41],"[geo":[37,40],"[github":41,"[gqtp":40,"[grntest":37,"[groonga":[12,33,37,39,41],"[header":[78,82,85,86,89,90,93,95,97,101,103,106,107,108,109,110,111,114,115,117,118,123,125,126,128,129,130,131],"[hh":33,"[http":[33,39,40,41],"[httpd":[33,39,40,41],"[index":41,"[info":171,"[key":33,"[label":[33,104,119],"[label1":[41,104,119],"[label2":[104,119],"[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,119],"[normalizer":41,"[number":96,"[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,156],"[solaris":39,"[space":160,"[suggest":[38,39,40],"[table":40,"[tag":[104,119],"[test":39,"[token":40,"[tokenizer":[39,40],"[travis":40,"[warning":171,"[windows":[33,37,39,40,41],"[yum":39,"[{":[137,189],"\"#":37,"\"#\"":136,"\"#{":161,"\"%":171,"\"'":[33,39,40,41,75,85,101,119,153,160,161,171,196,198],"\"(":[40,210],"\")":[33,39,40,41,52,116,143,144,145,147,151,153,154,161,203,211],"\"*":39,"\",":[33,40,75,78,83,85,87,89,90,93,94,96,104,116,119,122,124,125,126,127,131,135,136,137,143,145,148,149,150,151,153,154,156,157,158,160,161,162,164,171,172,173,174,177,178,180,182,195,198,201,202,203,204,206,207,208,209,210,211],"\"-":[37,145],"\".":[161,187,202],"\"/":[87,89,124,126,135,183,211],"\":":[33,75,79,83,85,89,93,94,96,101,102,104,105,107,108,116,117,118,119,121,122,126,127,129,130,131,135,136,137,143,145,148,149,150,151,153,154,157,158,160,161,162,164,167,168,171,172,173,174,177,178,180,182,183,189,195,201,202,203,204,206,207,208,209,210,211],"\";":[136,137,189],"\"<":[40,148,149],"\">":[148,149,156,168],"\"?":[119,168],"\"@":207,"\"[":[39,90,104,125,171],"\"\"":[38,85,157,161,171,185],"\"\\":[33,171],"\"\\\\":171,"\"\\n":33,"\"\u3001":[177,202],"\"\u3002":41,"\"\u308d\u3086\u304d":209,"\"\u30df\u30ea":161,"\"\u5f37":183,"\"\u672c":183,"\"\u8a9e":183,"\"\uff09":[34,177,201,211],"\"]":[33,75,87,94,104,119,135,153,156,158,161,177,198,203,204,207],"\"_":[40,75,78,85,87,89,93,94,96,104,119,122,126,127,131,137,143,145,150,151,153,154,157,158,160,161,162,164,167,171,172,173,174,177,178,180,182,189,198,201,202,203,204,206,207,208,209,210,211],"\"a":[41,119,129,157],"\"ab":179,"\"alice":160,"\"always":102,"\"apple":164,"\"application":37,"\"auto":102,"\"b":[119,157],"\"black":164,"\"blank":164,"\"block":201,"\"book":161,"\"c":[119,157],"\"canceled":116,"\"co":179,"\"color":164,"\"complete":179,"\"content":[119,160,161,182],"\"correction":179,"\"created":104,"\"d":183,"\"ddl":41,"\"double":161,"\"e":[122,129,177,183],"\"element":75,"\"ellip":146,"\"ellipsoid":146,"\"engine":[177,178,180],"\"flower":201,"\"fulltext":129,"\"good":[104,119,161],"\"gr":123,"\"gronga":179,"\"groonga":[75,94,119,123,156,157,161,179],"\"h":129,"\"hello":[127,182],"\"http":75,"\"i":[78,104,119,160,161,162,182,206,207],"\"is":201,"\"k":203,"\"keyword":119,"\"label":119,"\"localhost":195,"\"message":[171,173,174],"\"monkey":201,"\"mroonga":[75,94,119,157,161],"\"mysql":[75,179],"\"n":[78,104,119,121,137,160,161,195,204,208],"\"name":154,"\"never":102,"\"no":39,"\"null":39,"\"o":183,"\"popular":119,"\"pp":41,"\"rect":[39,146],"\"rectangle":[39,145,146],"\"requires":39,"\"roonga":179,"\"ruby":75,"\"s":[122,129,177,178,183],"\"saerch":178,"\"say":161,"\"se":177,"\"sea":177,"\"search":[160,177,178,180],"\"sequence":[122,177,178,180],"\"serach":178,"\"service":178,"\"sound":178,"\"sphere":146,"\"sphr":146,"\"starttime":[79,168],"\"sug":179,"\"suggest":179,"\"t":[129,183],"\"table":135,"\"tags":75,"\"text":37,"\"theater":210,"\"theatre":210,"\"timestamp":101,"\"tritonn":119,"\"type":122,"\"unknown":52,"\"uptime":168,"\"utf":52,"\"value":119,"\"vector":40,"\"version":168,"\"visual":8,"\"web":[178,180],"\"weight":201,"\"x":[40,41,161],"\"xxx":40,"\"yyyy":161,"\"}":[85,93,94,96,101,102,104,105,119,122,137,151,153,154,157,158,160,161,162,164,167,171,173,174,177,178,180,182,189,201,202,203,206,209,211],"\\%":31,"\\'":[135,160],"\\(":160,"\\[(":171,"\\\"":[53,96,148,149,150,156,157,171,196],"\\\"a":157,"\\\"}":96,"\\\\":[33,53,148,153,157,171],"\\\\\"":153,"\\\\\\":[33,171],"\\\\z":171,"\\a":[33,171,183],"\\ahello":33,"\\ahost":171,"\\bin":31,"\\groonga":31,"\\n":171,"\\u":183,"\\z":[171,183],"\u2026\uff09":178,"\u2192id":181,"\u25a1\u25a1":10,"\u25cb\u25cb":10,"\u3001 \"":151,"\u3001#":207,"\u3001$":12,"\u3001'":[41,52,135,154,161,185,201],"\u3001(":[63,64,136,143,185],"\u3001-":[35,136,185],"\u3001.":[14,17],"\u3001/":[204,208],"\u3001:":136,"\u3001>":88,"\u3001[":204,"\u3001\"":[37,39,40,150,151,157,177,178,179,180,185,204,207,210],"\u3001\u00d7":10,"\u3001\u300c":[34,119,135,167,172,173,174,177,183,196,198,202,203,211],"\u3001_":204,"\u3001c":204,"\u3002#":[35,37,207],"\u3002'":60,"\u3002(":[11,12,26,45,61,64,93,96,135,136,193,206],"\u3002)":[64,93,119,136,206],"\u3002-":[28,55,64],"\u3002.":17,"\u3002:":[10,12,14,17,33,37,77,79,83,86,91,94,96,97,108,115,116,121,122,124,130,133,135,136,137,138,149,161,172,173,174,177,178,179,180,184,189,196,198,199,204],"\u3002[":[33,39,40,41,204],"\u3002\"":[40,41,151,178,192,198,202,207,208],"\u3002\u00d7":10,"\u3002\u2193":135,"\u3002\u3002":166,"\u3002\u300c":[41,90,104,107,119,123,127,129,160,161,171,174,183,203,206],"\u3002\u300d":198,"\u3002\u3044":11,"\u3002\u3044\u304f\u3064\u304b":171,"\u3002\u3044\u307e":38,"\u3002\u3056\u3063\u304f\u308a":75,"\u3002\u3057\u304b\u3057":[0,6,7,8,23,37,75,89,119,126,145,162,164,172,174,178,183,185,189],"\u3002\u3057\u304b\u3082":188,"\u3002\u3059":[136,162],"\u3002\u3059\u3050":137,"\u3002\u3059\u3079\u3066":[14,17],"\u3002\u3064\u307e\u308a":[45,119,160,173,183,204,210],"\u3002\u3069\u308c":140,"\u3002\u307e\u305a":198,"\u3002\u307e\u305f":[0,11,77,95,119,134,135,136,138,161,170,174,178,185,195,201,204,211],"\u3002\u307e\u3060":41,"\u3002\u30ad\u30fc":119,"\u3002\u30bf\u30b0":[75,104,119,149,203],"\u3002\u30d0\u30b0":19,"\u3002\u30df\u30ea":201,"\u3002\u30ed\u30b0":[123,137],"\u3002\u4f8b":[8,33,60,123],"\u3002\u5024":143,"\u3002\u7701\u7565\u53ef\u80fd":148,"\u3002\uff08":[17,21,33,35,37,50,64,83,95,102,104,116,119,135,149,156,159,160,161,166,177,178,180,181,183,184,185,196],"\u3002\uff09":[17,21,33,34,35,37,64,95,102,104,116,119,123,149,156,160,161,166,178,180,181,183,196],"\u3002_":[73,204],"\u3002adjuster":41,"\u3002amazon":119,"\u3002api":[148,149,156,159],"\u3002apt":12,"\u3002ascii":[160,161],"\u3002bash":33,"\u3002blogs":198,"\u3002buf":47,"\u3002c":[0,16,81],"\u3002callback":11,"\u3002centos":33,"\u3002column":[11,47,204],"\u3002command":77,"\u3002cpu\u30b3\u30a2":189,"\u3002ctrl\u30ad\u30fc":204,"\u3002cursor":64,"\u3002db":[11,37,50,195,204],"\u3002debian":14,"\u3002dump":94,"\u3002eclipse":17,"\u3002ecmascript":119,"\u3002ftp":136,"\u3002functions":14,"\u3002gdb":[6,7,14],"\u3002geopoint":207,"\u3002git":12,"\u3002gnr":159,"\u3002gnu":5,"\u3002google":160,"\u3002gqtp":[81,134,195],"\u3002grn":[11,159],"\u3002groonga":[0,3,24,25,26,28,30,31,33,39,40,41,68,71,77,86,119,136,137,160,161,168,171,175,177,181,184,204,206,208],"\u3002hook":55,"\u3002host":195,"\u3002html":148,"\u3002http":[33,40],"\u3002id":50,"\u3002int":40,"\u3002iptables":208,"\u3002jis":167,"\u3002json":96,"\u3002key":[63,196],"\u3002keys":63,"\u3002linux":184,"\u3002make":136,"\u3002max":64,"\u3002messagepack":[28,78],"\u3002min":64,"\u3002mroonga":[0,60],"\u3002mruby":33,"\u3002munin":[24,25,26,30],"\u3002mysql":[24,25,26,30,175],"\u3002n":[107,129,198],"\u3002name":[47,50,63],"\u3002null":[50,51,63],"\u3002obj":60,"\u3002offset":55,"\u3002optarg":51,"\u3002os":90,"\u3002output":[41,94],"\u3002pcre":137,"\u3002point":[146,147],"\u3002post":189,"\u3002rk":167,"\u3002rroonga":159,"\u3002ruby":171,"\u3002run":14,"\u3002scan":14,"\u3002set":136,"\u3002sql":119,"\u3002squeeze":14,"\u3002table":[63,67,93],"\u3002tag":203,"\u3002timeout":60,"\u3002tokendelimit":180,"\u3002travis":21,"\u3002tsv":[78,170],"\u3002unix":121,"\u3002utf":[40,164],"\u3002value":[60,73],"\u3002video":203,"\u3002windows":5,"\u3002xml":78,"\u300c#":35,"\u300c,":94,"\u300c\"":135,"\u300c\u25cb":[33,103],"\u300c\u30e9\u30d9\u30eb":119,"\u300c\u4e8c":[],"\u300c\u5024":123,"\u300c\u5e74":33,"\u300c\u5f0f":53,"\u300c\u6771\u4eac\u90fd":198,"\u300c\u697d\u3057":196,"\u300c\u697d\u3057\u3044":196,"\u300c\uff76":164,"\u300ca":172,"\u300calice":207,"\u300cbill":196,"\u300cbilliard":196,"\u300cbob":207,"\u300ccharlie":207,"\u300ccomments":207,"\u300cgrand":207,"\u300cgroonga":[41,119,159,184],"\u300chello":119,"\u300cnew":207,"\u300cnihon":177,"\u300cnippon":177,"\u300cpopular":119,"\u300csenna":119,"\u300cthe":172,"\u300cthey":[172,173,174],"\u300cusers":207,"\u300cv":12,"\u300d:":164,"\u300d\u3001":[41,203,207],"\u300d\u3002":159,"\u300d\uff08":[94,119,196],"\u3042\u3044\u307e\u3044":123,"\u3042\u304d":209,"\u3042\u304d\u3089":41,"\u3042\u304f":46,"\u3042\u3052\u308b":[],"\u3042\u305f\u308a":[35,37],"\u3042\u3063":[12,17,26,39,40,47,60,63,73,77,96,101,119,122,136,161,171,189,203],"\u3042\u3068":[12,17,90,184],"\u3042\u306a\u305f":[2,6,7,8,12,33,171,172,173,174],"\u3042\u307e\u308a":[10,63,206],"\u3042\u3089\u304b\u3058\u3081":[12,26,185],"\u3042\u3089\u308f\u3057":210,"\u3042\u308a":[],"\u3042\u308b":[],"\u3042\u308b\u3044":[0,11,26,41,47,62,63,77,123,125,137,146,147,151,160,161,184,195],"\u3042\u308c":[6,7,12,46,123,136,143,151,161,162,198],"\u3042\u308c\u3053\u308c":10,"\u3042\u308f\u305b":[175,184],"\u3042\u308f\u305b\u308b":39,"\u3044\u3044":[2,10],"\u3044\u3044\u306d":[104,119,160,161],"\u3044\u3046":119,"\u3044\u304d":[10,12,204],"\u3044\u304f":[],"\u3044\u304f\u3064":[3,171],"\u3044\u304f\u3064\u304b":[1,2,8,11,12,14,26,28,33,40,73,94,95,101,103,104,106,107,116,119,127,129,142,154,160,161,164,171,172,175,183,184,188],"\u3044\u304f\u3089":0,"\u3044\u305a\u308c":[73,77,185],"\u3044\u3063":[121,171],"\u3044\u3064":177,"\u3044\u307e":118,"\u3044\u307e\u305b":[6,24,40,41,78,104,119,122,123,129,137,160,161,166,170,171,172,173,174,175,181,183,188,189],"\u3044\u308b":[],"\u3044\u308c":[33,39,60,183,201],"\u3044\u308d\u3044\u308d":[],"\u3044\u308f\u3086\u308b":203,"\u3044b":[196,198],"\u3046\u3048":[37,39],"\u3046\u3061":[11,33,37,39,47,60,63,64,77,83,121,143,166],"\u3046\u3061\u3044":135,"\u3046\u3063\u304b\u308a":40,"\u3046\u307e\u304f":[],"\u304a\u3044":[0,12,14,17,37,40,47,60,63,73,201,204],"\u304a\u304b":28,"\u304a\u304b\u3052":171,"\u304a\u304b\u3057":35,"\u304a\u304b\u3057\u304f":35,"\u304a\u304d":[0,12],"\u304a\u304d\u307e\u3057\u3087":201,"\u304a\u3051":[119,167],"\u304a\u3051\u308b":[0,32,39,40,160,185,201,203,204],"\u304a\u3053":[0,201],"\u304a\u3053\u306a\u3063":204,"\u304a\u3055\u3089\u3044\u3057":10,"\u304a\u3059\u3059\u3081":[151,189],"\u304a\u3059\u3059\u3081\u3057":[12,160,161,193],"\u304a\u3070":[33,34,37,40],"\u304a\u3070\u305f":[33,37,40],"\u304a\u3088":45,"\u304a\u3088\u3073":[0,12,28,39,61,135,201,204],"\u304a\u3089":12,"\u304a\u308a":[41,211],"\u304a\u5f85\u3061":2,"\u304a\u77e5\u3089":[],"\u304a\u9858\u3044":[10,136],"\u304b\u3048\u308b":[33,157],"\u304b\u304b\u3063":78,"\u304b\u304b\u308a":[160,161,162,183],"\u304b\u304b\u308b":[63,116,133,162,204],"\u304b\u304e\u308a":136,"\u304b\u3051":[40,84],"\u304b\u3051\u308b":[10,137],"\u304b\u305a":[39,41],"\u304b\u305a\u3072\u3053\u3055\u3093":39,"\u304b\u305f":33,"\u304b\u3061":[119,196],"\u304b\u3064":[40,64,119,161,196],"\u304b\u3069":[33,41,50,94,95,103,104,109,119,122,133,137,143,146,147,160,198,199,204,211],"\u304b\u3069\u3046":[28,33,81,115,143,154,157,198],"\u304b\u306a\u308a":41,"\u304b\u307e\u3044":204,"\u304b\u3082":[10,33,41,65,78,89,97,101,107,108,109,116,117,118,121,125,126,130,160,161,171,172,173,174,206],"\u304b\u3089":[],"\u304b\u308f\u308a":[26,33,41,198],"\u304by":40,"\u304c\u3042\u308a":[12,19,119,138,145,170,175,182],"\u304c\u3042\u308c":175,"\u304c\u3053\u306e":160,"\u304c\u3059":[63,109],"\u304c\u3061":183,"\u304c\u3063":[],"\u304c\u3064\u3044":[35,39,65,75,119,175,181],"\u304c\u3069":184,"\u304c\u3072\u3068\u3064":170,"\u304c\u308f\u304b\u308a":[85,150,183,207],"\u304c\u308f\u304b\u308b":145,"\u304c\u308f\u304b\u308c":119,"\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,82,85,86,87,89,90,93,95,97,102,104,105,107,108,109,110,111,114,115,116,117,118,119,121,122,123,125,126,127,128,129,130,131,136,137,138,145,150,153,154,157,158,160,161,167,170,171,181,183,184,185,187,189,193,198,199,201,202,204,207,208,209,211],"\u304f\u308c":10,"\u304f\u308c\u308b":[0,16,17,90,95],"\u3050\u3088\u3046":145,"\u3050\u308b":[33,159,160,161],"\u3050\u308b\u3093":[160,161,203],"\u3053\u3046":10,"\u3053\u3046\u3059\u308c":10,"\u3053\u3053":[12,21,78,119,122,160,161,164,170,198,201,204,207,211],"\u3053\u3053\u3067":12,"\u3053\u3068":[],"\u3053\u306a\u3044":[33,41],"\u3053\u306a\u308c":101,"\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,82,85,86,87,89,90,95,96,97,101,102,103,104,105,106,107,108,109,110,111,114,115,116,117,118,119,121,123,125,126,127,128,129,130,131,133,135,136,137,142,143,145,146,148,149,153,154,156,157,158,160,161,162,165,167,168,170,171,172,173,174,175,176,177,178,180,181,183,184,188,189,195,196,198,201,202,203,204,205,206,207,210,211],"\u3053\u308c":[0,6,7,8,11,12,16,17,28,33,37,39,40,41,46,51,68,75,82,85,86,89,97,101,102,103,104,106,109,110,111,114,115,116,119,123,126,129,137,143,145,149,153,156,157,160,161,162,164,170,171,172,173,174,175,177,178,179,180,181,183,184,189,195,196,198,199,201,202,206,207,210,211],"\u3053\u308c\u3089":[3,24,25,26,28,29,30,39,40,73,75,95,102,103,104,110,111,114,119,137,138,145,159,160,161,164,168,171,172,175,179,180,181,189,198,202,203,204,207],"\u3054\u3068":[],"\u3054\u307f":[10,40],"\u3054\u3089\u3093\u304f":13,"\u3054\u89a7\u304f":[14,204],"\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,82,85,86,87,89,90,93,95,97,102,104,105,107,108,109,110,111,114,115,116,117,118,119,121,122,123,125,126,127,128,129,130,131,136,137,138,145,150,153,154,157,158,160,161,167,170,171,181,183,184,185,187,189,193,198,199,201,202,204,207,208,209,211],"\u3055\u304d":201,"\u3055\u305b":10,"\u3055\u307e\u3056\u307e\u306a":[],"\u3055\u3089":206,"\u3055\u3089\u306b":[0,33,41,75,77,179,181,203,204],"\u3055\u3093":[6,7,17,33,35,36,37,38,39,40,41,101,103,104,106,119,123,125,127,129,156,171,174,179,184,189,202],"\u3057\u3044":[196,198],"\u3057\u3046\u308b":41,"\u3057\u304b":[17,33,41,103,104,119,123,137,160,161,171,173,174,183,189,201,206],"\u3057\u304b\u3057":[17,104,119,161,170,171,174,183,184,189,196,198,206],"\u3057\u304d\u308c":39,"\u3057\u304f":40,"\u3057\u3064\u3064":14,"\u3057\u3066":[10,12,14,17,30,35,39,40,63,119,137,198,202,203,204],"\u3057\u306a\u3044":33,"\u3057\u307e":10,"\u3057\u307e\u3044":[10,125,136,173,178,198,201,209],"\u3057\u307e\u3046":[0,10,12,33,35,37,39,40,41,125,133,183],"\u3057\u307e\u3057":40,"\u3057\u307e\u3057\u3087":[75,101,125,172,173,174,183,210],"\u3057\u307e\u3059":[24,104,119,160,161,179,196,207],"\u3057\u307e\u305b":[10,28,104,119,137,177,198],"\u3057\u307e\u3063":41,"\u3057\u3084\u3059\u304f":39,"\u3057\u3088":[11,37,40,45,50,58,89,96,126,145,162,201],"\u3057\u308a":10,"\u3057\u308c":[10,33,41,65,78,89,97,101,107,108,109,116,117,118,121,125,126,130,160,161,171,172,173,174,206],"\u3058\u304d":156,"\u3059\u304e\u307e\u305b":203,"\u3059\u304e\u308b":75,"\u3059\u304f":157,"\u3059\u3050":[0,116,189],"\u3059\u3053\u308c\u3089":119,"\u3059\u3067":[12,41,65,89,126,129,162,167,184,196],"\u3059\u306a\u308f\u3061":201,"\u3059\u3079":[11,33,37,41,77,84,85,94,95,97,105,115,119,125,126,129,131,136,137,161,177,181,183,184,189,195,207],"\u3059\u3079\u304d":11,"\u3059\u3079\u3066":[28,33,35,37,39,41,63,75,77,80,85,87,89,95,119,126,129,136,137,143,161,171,182,183,184,202,204],"\u3059\u3080":101,"\u3059\u308b":[],"\u3059\u308b\u304b":202,"\u3059\u308c":[0,12,33,63,110,114,119,136,143,148,160,161,183,202,204],"\u305a\u3064":[135,136,184,206],"\u305a\u306b":75,"\u305a\u308c":[0,11,63,77,86,96,98,99,135,145,185,195,201],"\u305b\u3044":[40,41],"\u305b\u3044\u305c\u3044":123,"\u305b\u306a":[160,161],"\u305b\u308b":[0,11,14,123,138,148,149,153,154,193],"\u305b\u308c":[0,85],"\u305d\u3046":[10,21,50,109,116,143,151,161],"\u305d\u3053":[12,198,201],"\u305d\u3053\u306b":124,"\u305d\u3057\u3066":[0,119,129,156,201,202,206,207],"\u305d\u3061\u3089":28,"\u305d\u306e":[],"\u305d\u306e\u307e\u307e":12,"\u305d\u306e\u3088\u3046":93,"\u305d\u306e\u5f8c":[50,119,161],"\u305d\u306e\u969b":12,"\u305d\u308c":[11,12,17,26,31,33,35,57,60,64,66,87,104,119,123,137,150,158,160,161,171,180,183,185,196,198,201,202,204,206,210],"\u305d\u308c\u304b\u3089":[75,119],"\u305d\u308c\u305e\u308c":[6,7,8,11,12,14,28,41,60,63,78,101,119,123,129,135,138,154,161,168,181,195,196,198,201,202,204,206,211],"\u305d\u308c\u3086\u3048":[160,201],"\u305d\u308c\u3089":[33,45,47,65,86,95,119,125,134,170,171,189],"\u305d\u308d\u305d\u308d":204,"\u305d\u3093\u306a":[28,123],"\u305e\u3044":104,"\u305e\u308c":[11,12,57,119,161,180],"\u305f\u3044":[],"\u305f\u304b":[33,37,97,116,119,178],"\u305f\u304b\u3063":[178,210],"\u305f\u304f":[6,7,17,33,37,40,65,101,103,104,106,119,123,125,127,129,156,171,174,179,184,189,202],"\u305f\u3051\u3069":119,"\u305f\u3055\u3093":[33,34,37,40],"\u305f\u3059\u3079\u3066":119,"\u305f\u3060":[26,75],"\u305f\u3060\u3051":39,"\u305f\u3060\u3057":[33,34,37,40,41,64,73,86,103,121,135,138,160,161,171,196],"\u305f\u3061":175,"\u305f\u3068\u3048":198,"\u305f\u3069\u3063":207,"\u305f\u3069\u308b":203,"\u305f\u3070\u304b\u308a":162,"\u305f\u3073":[12,77,136,211],"\u305f\u3076\u3093":28,"\u305f\u307b\u3046":119,"\u305f\u307e\u307e":189,"\u305f\u3081":[],"\u305f\u3081\u3057":211,"\u305f\u3089":[10,12,17,28,33,35,41,50,65,68,90,97,115,116,119,125,128,133,143,154,157,161,173,177,183,189,193],"\u305f\u308a":[0,3,10,33,41,55,119,123,159,171,181,185,193],"\u3060\u3044":[37,41],"\u3060\u304b\u3089":[104,119],"\u3060\u3051":[],"\u3060\u3055\u3044":[0,3,12,13,14,17,19,21,23,28,29,30,33,39,41,75,78,85,102,104,109,119,121,123,137,153,158,160,161,164,170,171,175,177,189,195,202,204],"\u3060\u3057":[37,136],"\u3060\u3063":[33,39,63,77,119,161,198],"\u3060\u3068":10,"\u3061\u3083\u3093":203,"\u3064\u3044":207,"\u3064\u304b":36,"\u3064\u304d":[32,41,75,82,86,117,118,119,128,150,170,173],"\u3064\u3051":[119,145],"\u3064\u3051\u308b":[10,41,75,119,209],"\u3064\u3064":[154,198],"\u3064\u3065\u3044":207,"\u3064\u3076\u3084\u304d":162,"\u3064\u307e\u308a":[12,33,90,101,119,129],"\u3065\u3051":[],"\u3066\u304d":81,"\u3066\u304f":14,"\u3066\u307f\u307e\u3057\u3087":211,"\u3067\u3044":[33,119,161,201,207],"\u3067\u3044\u3046":[164,202],"\u3067\u304d":[],"\u3067\u304d\u308b":[],"\u3067\u304f":[3,21,23,41,75,119,123,153,161,170],"\u3067\u3053\u306e":184,"\u3067\u3057":[29,33,41,161,172,201],"\u3067\u3057\u304b":[7,183],"\u3067\u3057\u3087":[0,6,7,20,28,41,161,162,202],"\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,83,85,86,87,89,90,93,94,95,96,97,101,102,103,104,105,106,107,108,109,110,111,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,140,141,143,145,146,148,149,150,151,153,154,156,157,158,159,160,161,162,164,166,167,168,170,171,172,173,174,175,177,178,179,180,181,182,183,184,185,188,189,193,195,196,198,199,201,202,204,205,206,207,208,210,211],"\u3067\u3059\u306d":10,"\u3067\u305d\u3046":102,"\u3067\u3064\u306a\u3052\u308b":119,"\u3067\u3069":[102,122],"\u3067\u3069\u3053":81,"\u3067\u306a\u3051\u308c":[95,160,161],"\u3067\u306b":[109,110,114,162,198],"\u3067\u306e":[41,78,156,183],"\u3067\u306f":41,"\u3067\u307e\u3068\u3081":170,"\u3067\u307f":0,"\u3067\u3082":[0,12,14,17,19,23,24,25,26,28,30,31,33,37,39,40,41,81,86,95,119,123,136,137,149,154,156,157,167,171,174,175,177,181,183,195,196,198,204,206,208,211],"\u3067\u3082\u3059\u3079\u3066":183,"\u3067\u3082\u3063\u3068\u3082":76,"\u3067\u3088\u308a":41,"\u3067\u5024":[135,204],"\u3068\u3044\u3044":171,"\u3068\u3044\u3046":[0,9,10,12,14,17,28,33,37,39,40,41,53,75,77,80,83,90,95,97,104,107,109,110,111,114,115,116,117,119,121,122,123,125,128,129,136,137,138,145,149,153,154,156,157,159,160,161,164,168,170,171,172,173,174,175,177,178,181,182,183,184,185,189,195,196,198,201,202,203,204,206,207,208,211],"\u3068\u3044\u3051":[33,101,119,123,195,199],"\u3068\u3044\u3063":[26,33,39,40,41,75,101,103,104,106,119,145,159,160,161,181,189,211],"\u3068\u3048":[0,28,33,41,52,53,77,85,89,104,119,121,126,149,156,167,171,172,173,174,183,184,196,211],"\u3068\u304a\u308a":[32,136,201,202,211],"\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,79,85,86,89,90,95,102,103,109,110,111,114,115,119,122,123,125,126,128,129,135,137,145,153,154,156,159,160,161,162,164,167,170,171,175,177,178,179,180,183,184,185,189,195,196,201,202,203,204,207,208],"\u3068\u304d\u3057\u304b":90,"\u3068\u3053\u306e":[119,171,177,184],"\u3068\u3053\u308d":[16,17,33,38,86,104,117,118,153,161,183],"\u3068\u3053\u308d\u3044\u304f\u3064\u304b":75,"\u3068\u3055\u3089\u306b":[6,7],"\u3068\u3057":[11,40,41,50,89,118,119,126,134,135,136,137,145,161,162,170,177,178,179,180,183,185,201,203,206],"\u3068\u3057\u3066":[],"\u3068\u3057\u307e\u3057\u3087":[206,210],"\u3068\u3057\u307e\u305b":45,"\u3068\u3059\u3050":162,"\u3068\u3059\u3079\u3066":[39,95,102,115,119],"\u3068\u3059\u308c":0,"\u3068\u305d\u306e":[77,80,173],"\u3068\u3063":137,"\u3068\u3064\u3044":211,"\u3068\u3066":[0,119,160,161,177,181,189],"\u3068\u3068":[16,17],"\u3068\u3068\u3082\u306b":201,"\u3068\u3069":[85,176],"\u3068\u306a\u3063":40,"\u3068\u306a\u308a":[149,156,160,189,208],"\u3068\u306e":[33,104,161],"\u3068\u307f":[40,119,138,160],"\u3068\u3082":[33,104,119,136,156,157,160,161,184,199,211],"\u3068\u3082\u3063\u3068":28,"\u3068\u3088\u3044":28,"\u3068\u308a\u3068\u3093":[160,161],"\u3068\u308b":60,"\u3068\u308f\u304b\u308a":175,"\u3068\u308f\u304b\u308b":12,"\u3069\u3046":[10,33,34,39,51,84,88,91,97,98,99,100,103,119,133,137,183,198,202],"\u3069\u3053":[28,37,41],"\u3069\u3061\u3089":[19,33,50,71,125,179,189,204,206],"\u3069\u3061\u3089\u304b":[149,156,160,161],"\u3069\u306e":[28,119,129,145,146,161,166,178,202],"\u3069\u308c":[78,87,95,97,102,115,119,123,125,153,183,189],"\u3069\u3093":124,"\u306a\u3044":[],"\u306a\u304a":[12,196],"\u306a\u304a\u3053\u306e":136,"\u306a\u304a\u3057":41,"\u306a\u304a\u3059":[41,115],"\u306a\u304b":10,"\u306a\u304b\u3063":[33,39,41,77,79,84,88,91,97,98,99,100,115,119,133,135,136,143,154,157,161,171,173,198,204],"\u306a\u304c\u3089":[0,12,39,104,119,129,183,204],"\u306a\u304c\u308b":39,"\u306a\u304e":157,"\u306a\u304f":[0,3,10,12,21,28,33,34,35,37,39,40,41,50,60,87,101,104,110,114,119,123,125,136,137,143,156,157,159,160,161,166,167,172,173,174,181,183,184,189,193,201,202,204,206,210],"\u306a\u3051\u308c":[21,28,39,46,47,50,53,58,60,63,71,75,81,85,86,87,89,96,101,104,116,119,123,126,135,136,137,143,150,151,153,157,158,160,161,170,171,172,173,174,201],"\u306a\u3055":[138,155],"\u306a\u3055\u3093":3,"\u306a\u3057":[],"\u306a\u3059":147,"\u306a\u305c":[6,7,8,33,85,90,95,104,119,123,128,153,160,161,164,167,171,172,173,174,177,178,182,183],"\u306a\u305f":[33,175],"\u306a\u3063":[0,6,7,8,10,12,14,33,35,37,38,39,40,41,75,77,78,83,90,101,119,129,160,161,173,175,177,184,189,193,198,201,204,206,207,208],"\u306a\u3068\u304d":0,"\u306a\u3069":[0,5,6,7,8,11,12,13,17,20,28,33,37,39,41,51,60,77,83,85,100,117,118,119,123,129,136,148,149,156,159,160,161,162,166,170,171,172,173,174,177,178,180,181,183,185,189,196,198,201,204,205,207,208],"\u306a\u306a\u3069":[160,161],"\u306a\u306b":[],"\u306a\u306b\u5bfe\u3057":[160,161],"\u306a\u306e":[33,177],"\u306a\u3073":33,"\u306a\u3082\u306e":[12,47,171],"\u306a\u3084\u308a\u304b\u305f":210,"\u306a\u3089":[6,7,8,11,14,21,24,25,26,30,33,39,40,41,47,51,60,63,75,77,85,90,93,95,97,101,103,104,106,112,119,121,123,128,133,135,136,137,150,153,158,160,161,164,167,171,172,173,174,177,178,182,183,184,199,206],"\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,81,82,84,85,86,90,92,95,96,97,101,104,110,111,114,115,116,119,121,122,123,125,126,128,135,136,137,138,145,146,153,156,160,161,162,164,167,168,170,171,172,173,174,175,177,178,182,183,185,195,198,201,202,203,204,206,207,208,209,211],"\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,84,86,92,93,94,95,97,115,119,123,125,135,136,137,143,146,147,151,153,154,156,160,161,162,175,180,184,185,198,201,202,204],"\u306a\u308c":77,"\u306a\u3093":77,"\u306b\u3042\u308a":[6,7,8,107,123],"\u306b\u3044\u304f\u3064\u304b":[33,40],"\u306b\u304a\u3044":[12,77,201],"\u306b\u304f\u3044":0,"\u306b\u304f\u3044\u304b":183,"\u306b\u304f\u304f":33,"\u306b\u304f\u308b":198,"\u306b\u3057":[33,40,41,102,119,153,160,161],"\u306b\u3059":198,"\u306b\u3059\u3050":162,"\u306b\u3059\u3079\u3066":85,"\u306b\u3059\u308b":189,"\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,78,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,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,142,144,145,146,147,149,152,154,155,157,160,167,170,171,172,173,174,175,177,178,180,183,184,185,187,189,195,196,199,201,202,204,205,207,211],"\u306b\u3064\u3051":161,"\u306b\u3064\u3076\u3084\u3051":10,"\u306b\u3064\u3076\u3084\u3051\u308b":10,"\u306b\u3066":[12,33,39,40,145],"\u306b\u3068\u3063":[10,33],"\u306b\u3068\u3063\u3066":[10,129,183],"\u306b\u3069":11,"\u306b\u3082":[119,171,196],"\u306b\u3088":39,"\u306b\u3088\u304f":172,"\u306b\u3088\u3063":[0,9,11,40,50,60,63,75,77,83,84,86,88,91,92,94,98,99,100,101,112,120,124,134,135,138,159,195,196,201,203,204],"\u306b\u3088\u3063\u3066":[0,14,40,50,73,77,198,201,204],"\u306b\u3088\u308a":[0,12,32,33,39,40,41,83,119,137,145,183,185,189,192,195,198,201,204,206,208,209],"\u306b\u3088\u308b":[],"\u306b\u5bfe\u3057":[0,11,12,33,34,39,40,41,55,60,63,75,85,86,104,110,114,116,119,122,131,133,134,138,157,160,161,171,173,183,196,202,203,204,206,210,211],"\u306b\u5bfe\u3057\u7570":154,"\u306b\u5bfe\u3059\u308b":[],"\u306b\u5bfe\u5fdc":[37,38,39,41,47,50,55,58,60,61,63,66,96,100,101,104,135,138],"\u306b\u5bfe\u5fdc\u4ed8\u3051":177,"\u306b\u5bfe\u8c61":37,"\u306b\u95a2\u3057":[11,33,40,50,136],"\u306b\u95a2\u3059\u308b":[],"\u306e\u3042\u3068":39,"\u306e\u3044":[0,11,63,77,96,98,99,135,145,185,195],"\u306e\u3044\u305a\u308c":[87,210],"\u306e\u3044\u305a\u308c\u304b":[62,63,66,146,147],"\u306e\u3046\u3061":[87,160],"\u306e\u304b":[196,207],"\u306e\u304b\u308f\u308a":41,"\u306e\u304f\u3089\u3044":184,"\u306e\u3059":90,"\u306e\u3059\u3079\u3066":[104,119,128,189],"\u306e\u305e\u3044":183,"\u306e\u3067":[0,1,10,12,17,21,31,33,37,39,40,41,78,85,95,101,103,104,117,118,119,123,137,138,143,145,154,156,157,170,177,184,189,193,196,198,199,201,204,206,207],"\u306e\u3067\u3057\u3087":[119,171],"\u306e\u3069\u3061\u3089":[119,161],"\u306e\u3069\u3061\u3089\u304b":[119,143,160,161],"\u306e\u3069\u308c":[123,140,177],"\u306e\u306b":[],"\u306e\u306b\u5bfe\u3057":50,"\u306e\u307b\u304b":[185,201],"\u306e\u307f":[],"\u306e\u307f\u3057\u304b":179,"\u306e\u3088\u3046":[33,40,41,46,87,101,119,123,153,159,160,161,171,172,183],"\u306f\u3042\u306a\u305f":6,"\u306f\u3044":201,"\u306f\u3044\u304f\u3064\u304b":[32,45,78,125,160,189],"\u306f\u3044\u3051":[50,60,93,97,133,161],"\u306f\u3044\u308f\u3086\u308b":33,"\u306f\u304d\u3063\u3068":171,"\u306f\u3053\u306e":[33,119,121,157,174,183,199],"\u306f\u3058\u307e\u308a":77,"\u306f\u3058\u3081":[],"\u306f\u3059\u3079\u3066":[82,90,95,96,97,109,115,117,118,119,121,123,125,127,128,129,137,149,159,161,164,173,174,183,204],"\u306f\u305a":[39,136,171,184],"\u306f\u305d\u306e":50,"\u306f\u3061\u3087\u3046":161,"\u306f\u3068":181,"\u306f\u3069":[119,123,177],"\u306f\u3069\u3061\u3089":189,"\u306f\u3069\u3061\u3089\u304b":[160,161],"\u306f\u306a\u304f":171,"\u306f\u307b\u3068\u3093\u3069":119,"\u306f\u307e\u305a":12,"\u306f\u307e\u3060":[104,174,189],"\u306f\u307e\u3068\u3081\u3066":12,"\u306f\u307f":3,"\u306f\u6708":[161,175],"\u3070\u3042":175,"\u3070\u3044\u3051":[21,28,39,47,50,53,58,60,63,71,75,85,87,89,95,104,119,123,126,137,153,157,160,161,170,171,172,173,174],"\u3070\u304b\u308a":33,"\u3070\u3053\u306e":33,"\u3070\u3059\u3079\u3066":183,"\u3070\u308c\u308b":35,"\u3072\u3053\u3055\u3093":[39,41],"\u3072\u3068\u3064":[39,144,160],"\u3072\u3089":[153,160,161,167,177,183],"\u3072\u308d":209,"\u3072\u308d\u3086\u304d":209,"\u3075\u306a\u3068":41,"\u3075\u308a":122,"\u3076\u3093":10,"\u3078\u3059\u3079\u3066":[33,85],"\u3078\u306e":[28,201],"\u3079\u304d":[6,7,8,12,33,60,87,103,115,161,164,195],"\u3079\u304f":204,"\u3079\u3066":[105,119,137,202],"\u3079\u30fc\u30b9":41,"\u307b\u3046":41,"\u307b\u304b":[0,201],"\u307b\u3057\u304f":119,"\u307b\u3068\u3093\u3069":[33,50],"\u307b\u3069":[122,123,183,193,201,204],"\u307e\u3057":[6,7,8,10,12,17,33,37,39,40,41,104,119,123,137,145,160,161,164,171,178,183,198,202,203,207],"\u307e\u3057\u3087":[104,119,145,203,204],"\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,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,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,164,165,166,167,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,187,188,189,192,193,195,196,198,199,201,202,203,204,205,206,207,208,209,210,211],"\u307e\u305a":[12,17,28,31,136,137,161,196,198,202,204,206,207,210],"\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,82,85,86,87,89,90,93,95,96,97,100,101,102,103,104,105,107,108,109,112,115,116,117,118,119,120,121,122,123,124,125,126,128,129,130,133,135,136,137,143,145,149,153,154,156,157,160,161,162,164,166,170,171,172,173,174,175,177,178,179,181,182,183,184,185,187,189,193,195,196,198,199,201,202,204,206,208,210],"\u307e\u305f":[],"\u307e\u305f\u3044":[39,145,175],"\u307e\u305f\u3050":[],"\u307e\u3060":[37,40,41,77,101,104,117,118,119,121,122,156,161,172,175,195],"\u307e\u3064\u308f":40,"\u307e\u3067":[11,12,17,32,40,41,45,46,96,101,119,135,136,143,162,171,181,184,202,204,206,207,209],"\u307e\u3068\u3081":[],"\u307e\u3068\u3081\u3066":[0,12,201,202],"\u307e\u3068\u3081\u308b":137,"\u307e\u307e":[10,12,33,40,77,125,161,202],"\u307e\u307e\u3067":198,"\u307e\u308a":[33,119],"\u307e\u308d\u3086\u304d":209,"\u307e\u308f\u308a":3,"\u307f\u304c":11,"\u307f\u305f\u3059":207,"\u307f\u3066":211,"\u307f\u306a\u3055":11,"\u307f\u307e\u3057\u3087":[101,119,125,161,172,173,174,201,202,203,204,206,207,210,211],"\u3080\u308b":[160,161],"\u3080\u308b\u3093":[160,161],"\u3082\u3046":[39,50,95,137,144,162,201,206],"\u3082\u3046\u307e\u304f":28,"\u3082\u304d\u3061\u3093":137,"\u3082\u3053\u306e":95,"\u3082\u3057":[6,7,21,28,33,40,41,46,65,78,80,81,90,95,104,115,116,119,121,123,125,133,136,137,143,145,151,154,157,160,161,170,171,172,173,175,184,189],"\u3082\u3057\u3042":33,"\u3082\u3057\u304b\u3057":183,"\u3082\u3057\u304f":[12,26,33,39,40,41,63,64,101,103,106,137,143,148,149,156,160,161,185,195,199,201,206],"\u3082\u3057\u3053\u306e":199,"\u3082\u3057\u3054":39,"\u3082\u3057\u307e\u305b":65,"\u3082\u3057\u308c":[170,183],"\u3082\u3057\u4e00\u3064":[],"\u3082\u3057\u4f7f\u3063":97,"\u3082\u3057x":40,"\u3082\u3059":[110,114],"\u3082\u305b":133,"\u3082\u3061\u308d\u3093":[136,202],"\u3082\u3063\u3068":[6,7,119],"\u3082\u3063\u3068\u3082":[14,80],"\u3082\u3064":[33,93,202],"\u3082\u3069\u3061\u3089":174,"\u3082\u306e":[11,12,17,31,33,39,40,41,46,63,64,77,101,103,104,106,119,134,135,136,137,145,146,151,153,155,164,171,172,174,178,195,201,204,206],"\u3082\u3088\u308a":174,"\u3082\u3089\u3048":10,"\u3082\u3089\u3048\u308b":10,"\u3082\u3089\u3063":204,"\u3082\u308a":33,"\u3082\u308c\u308b":33,"\u3084\u304c":77,"\u3084\u3057":119,"\u3084\u3059\u3044":[33,34,119,149,156,159],"\u3084\u3059\u3044\u304b":170,"\u3084\u3059\u304f":[35,41,79],"\u3084\u3059\u304f\u3057":33,"\u3084\u305d\u306e":93,"\u3084\u307e":41,"\u3084\u307e\u3060":41,"\u3084\u307e\u306d":[40,41],"\u3084\u3081":[33,37,40,41],"\u3084\u3081\u307e\u3057\u3087":[172,173,174],"\u3084\u3089":12,"\u3084\u308b":[],"\u3086\u304d":209,"\u3086\u304d\u3072\u308d":209,"\u3088\u3044":[17,60,85,95,119,160,161,189,202,206],"\u3088\u3046":[],"\u3088\u304b\u3063":198,"\u3088\u304f":[75,95,104,119,143,171,183],"\u3088\u3063":211,"\u3088\u3063\u3066":[71,129,166,185,205,211],"\u3088\u3073":11,"\u3088\u308a":[6,7,11,23,28,33,35,37,39,40,41,64,75,90,119,123,136,145,146,151,160,161,162,170,171,172,173,174,177,183,184,185,196,198,201,202,206,207],"\u3089\u308c":[0,10,11,35,37,39,40,46,84,85,87,93,116,119,124,129,181,183,204,206,210],"\u3089\u308c\u308b":[0,11,39,40,41,47,64,171,196],"\u308c\u305a":77,"\u308c\u307e\u305b":[28,33,63,77,83,119,125,135,148,170,206],"\u308c\u308b":[0,9,11,12,14,17,28,33,37,39,40,41,46,50,55,61,64,65,73,75,77,82,83,100,101,102,104,107,116,117,118,119,122,123,125,135,136,143,145,151,156,157,162,164,166,171,177,178,180,181,183,185,195,196,198,204,211],"\u308f\u304b\u3061":196,"\u308f\u304b\u308a":[33,35,41,119,183,202],"\u308f\u304b\u308b":41,"\u308f\u304b\u308c":119,"\u308f\u3051":[119,127,129,161,177,184,201],"\u3092\u304a\u3053":207,"\u3092\u3054":14,"\u3092\u3054\u89a7\u304f":0,"\u3092\u3064\u3051":[101,119,160],"\u3092\u3064\u3051\u308b":[6,7,161],"\u3092\u308a":137,"\u3092\u901a\u3057":[135,204],"\u3093\u304c":[160,161],"\u3093\u3057":[97,109],"\u3093\u3057\u304d":159,"\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,89,119,126,134,135,137,138,184,201,208],"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":[],"\u30a2\u30b8\u30e3\u30b9\u30bf\u30fc":[75,119],"\u30a2\u30c3\u30c8\u30de\u30fc\u30af":123,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":[],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u30a2\u30c9\u30ec\u30b9":[37,63,135,136,195,208],"\u30a2\u30ca\u30a6\u30f3\u30b9":12,"\u30a2\u30d4\u30fc\u30eb":12,"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":[0,20,56,161],"\u30a2\u30e1\u30ea\u30ab":145,"\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":[82,145,159,174],"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[41,64,104,119,123,129,171,178,183,196,198],"\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":39,"\u30a2\u30f3\u30ab\u30fc":[],"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":[73,86,123],"\u30a2\u30f3\u30de\u30c3\u30d7":[33,90],"\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\u30ea\u30e1\u30f3\u30c8":80,"\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,136,159],"\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":168,"\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\u30c7\u30c3\u30af\u30b9\u30e2\u30b8\u30e5\u30fc\u30eb":33,"\u30a4\u30f3\u30dd\u30fc\u30c8":[],"\u30a6\u30a7\u30a4\u30c8":86,"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":[],"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6":[135,137,138],"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9":135,"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8":35,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":[28,59,119,135],"\u30a8\u30b9\u30b1\u30fc\u30d7":[],"\u30a8\u30c7\u30a3\u30bf":17,"\u30a8\u30e9\u30fc":[],"\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":[39,41,204],"\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":193,"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":[28,33,34,41,50,52,53,161,164],"\u30a8\u30f3\u30b3\u30fc\u30c9":[35,138,164],"\u30a8\u30f3\u30b8\u30f3":[0,119,171,172,173,174,201,203],"\u30a8\u30f3\u30c8\u30ea":[46,47,104,119,157,160,161],"\u30a8\u30f3\u30c8\u30ea\u30fc":[33,119],"\u30aa\u30b9\u30b9\u30e1":[6,7,8,23,24,25,26,30,31,171,183],"\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea":35,"\u30aa\u30d5\u30bb\u30c3\u30c8":[33,39,119,122],"\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,193],"\u30aa\u30fc\u30d7\u30f3":[33,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,101,207],"\u30ab\u30b9\u30b1\u30fc\u30c9":[],"\u30ab\u30b9\u30bf\u30de\u30a4\u30ba":[6,7,8,28,33,39,40,41,91,94,107,119,123,127,129,135,156,160,164,172,177,182,184,202],"\u30ab\u30b9\u30bf\u30e0":[65,128,137],"\u30ab\u30b9\u30bf\u30e0\u30b9\u30b3\u30a2\u30e9\u30fc":172,"\u30ab\u30b9\u30bf\u30e0\u30bb\u30ec\u30af\u30bf":39,"\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0":41,"\u30ab\u30bf\u30ab\u30ca":[64,122,153,164,167,177,183],"\u30ab\u30c6\u30b4\u30ea":[119,127,129],"\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":89,"\u30ab\u30e9\u30e0\u30d9\u30fc\u30b9":[160,161],"\u30ab\u30e9\u30e0id":63,"\u30ab\u30e9\u30e0n":157,"\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[12,17,136],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9":64,"\u30ab\u30ec\u30fc":196,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":196,"\u30ab\u30f3\u30b8":153,"\u30ab\u30f3\u30de":[94,96,161,202,204],"\u30ab\u30fc\u30bd\u30eb":[35,37,57,64],"\u30ab\u30fc\u30cd\u30eb":184,"\u30ab\u30fc\u30cd\u30eb\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[39,184],"\u30ad\u30e3\u30b9\u30c8":[35,38,39,40,160,173,174,207],"\u30ad\u30e3\u30c3\u30b7\u30e5":[],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":82,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":46,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30b5\u30a4\u30ba":137,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d2\u30c3\u30c8":40,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb":137,"\u30ad\u30e3\u30f3\u30bb\u30eb":[80,116],"\u30ad\u30e3\u30f3\u30bb\u30eb\u30ea\u30af\u30a8\u30b9\u30c8":116,"\u30ad\u30fc":[32,33,35,38,39,40,41,47,61,63,73,75,85,93,101,103,104,106,116,119,121,123,125,135,140,160,161,164,167,181,183,185,201,204],"\u30ad\u30fc\u30b5\u30a4\u30ba":[33,181],"\u30ad\u30fc\u30b5\u30dd\u30fc\u30c8":181,"\u30ad\u30fc\u30dc\u30fc\u30c9":119,"\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":137,"\u30af\u30a8\u30ea\u30d1\u30bf\u30f3":134,"\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":179,"\u30af\u30a8\u30ea\u30ed\u30b0":[37,39,177,178,180],"\u30af\u30a8\u30ea\u30fc":[],"\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":168,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":[],"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":82,"\u30af\u30a8\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8":119,"\u30af\u30a8\u30ea\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":189,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":[33,41,135,137],"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":135,"\u30af\u30a8\u30ea\u30fcapi":[76,81],"\u30af\u30a8\u30eaapi":33,"\u30af\u30a9\u30fc\u30c8":[107,129,160],"\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":112,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":[35,39,135,138],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea":[1,193],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":41,"\u30af\u30e9\u30c3\u30b7\u30e5":[33,35,37,39,40,41,89,95,97,126],"\u30af\u30e9\u30c3\u30b7\u30e5\u30d0\u30b0":33,"\u30af\u30ea\u30a2":[37,39,60],"\u30af\u30ea\u30c3\u30af":119,"\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":119,"\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":166,"\u30b1\u30fc\u30b9":[],"\u30b2\u30c3\u30c8":2,"\u30b3\u30a2":[28,137,189],"\u30b3\u30b9\u30c8":[63,162],"\u30b3\u30cd\u30af\u30b7\u30e7\u30f3":33,"\u30b3\u30d4\u30fc":[12,33,39,47,55,60,63,85,89,94,126],"\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":171,"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":[31,39,136],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3":[28,77,78,136,188],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":168,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b7\u30a7\u30eb":160,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b9\u30bf\u30a4\u30eb":171,"\u30b3\u30de\u30f3\u30c9\u30ea\u30b9\u30c8":135,"\u30b3\u30de\u30f3\u30c9url":189,"\u30b3\u30df\u30c3\u30c8":[6,7,12],"\u30b3\u30e1\u30f3\u30c8":[],"\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8":206,"\u30b3\u30e1\u30f3\u30c8\u30ab\u30e9\u30e0":206,"\u30b3\u30e1\u30f3\u30c8\u30c6\u30fc\u30d6\u30eb":206,"\u30b3\u30e1\u30f3\u30c8id":207,"\u30b3\u30ed\u30f3":86,"\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8":[46,50,60,121,157],"\u30b3\u30f3\u30c6\u30f3\u30c8\u30bf\u30a4\u30d7":195,"\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\u30d4\u30e5\u30fc\u30bf\u30fc":167,"\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb":77,"\u30b3\u30fc\u30c9":[17,33,40,41,129],"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":11,"\u30b4\u30df":[35,37,83],"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":83,"\u30b5\u30a4\u30ba":[0,23,24,25,26,30,31,32,33,37,39,40,41,47,58,60,63,64,65,80,83,123,135,156,158,181,184,195,199,201],"\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":92,"\u30b5\u30a4\u30c8":[12,119,159,201,203],"\u30b5\u30a4\u30c9\u30e1\u30cb\u30e5\u30fc":119,"\u30b5\u30b8\u30a7\u30b9\u30c8":[],"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de":178,"\u30b5\u30d6\u30bb\u30c3\u30c8":[63,185],"\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,104,116,117,118,121,123,128,129,136,137,153,154,156,160,161,162,164,166,167,168,170,171,175,181,183,189,192,193,201,202,206,208],"\u30b5\u30de\u30ea":40,"\u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3":145,"\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":105,"\u30b5\u30f3\u30d7\u30eb\u30b9\u30ad\u30fc\u30de":[150,151,154,157,158,172,173,174],"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0":136,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9":120,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9":135,"\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":195,"\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9":33,"\u30b5\u30fc\u30d0\u30fcid":37,"\u30b5\u30fc\u30d3\u30b9":[0,21,39,40,41,184],"\u30b5\u30fc\u30d3\u30b9\u30b9\u30af\u30ea\u30d7\u30c8":40,"\u30b7\u30a7\u30a2":2,"\u30b7\u30a7\u30eb":[28,33,135,136,160,171],"\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":104,"\u30b7\u30e3\u30fc\u30c9":[33,104,105,175],"\u30b7\u30e3\u30fc\u30c9\u30ad\u30fc":104,"\u30b7\u30e3\u30fc\u30d7":123,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":[40,107,129,135,204],"\u30b7\u30f3\u30b0\u30eb\u30b9\u30ec\u30c3\u30c9\u30e2\u30c7\u30eb":128,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9":41,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9\u30a8\u30e9\u30fc":[33,41],"\u30b7\u30f3\u30d7\u30eb":[33,159,188,202],"\u30b7\u30f3\u30dc\u30eb":86,"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb":33,"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30b5\u30fc\u30c1":[33,162],"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30b9\u30ad\u30e3\u30f3":[33,153],"\u30b7\u30fc\u30b1\u30f3\u30b9":[177,178,180],"\u30b8\u30aa\u30b5\u30fc\u30c1":[],"\u30b9\u30ab\u30e9":47,"\u30b9\u30ab\u30e9\u30fc":[75,119],"\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":[148,149],"\u30b9\u30ad\u30fc\u30de":[33,53,85,93,94,101,104,119,125,143,145,148,149,150,151,153,154,156,157,158,160,161,162,171,172,173,174,175,184,206],"\u30b9\u30af\u30ea\u30d7\u30c8":[],"\u30b9\u30b1\u30fc\u30d7":171,"\u30b9\u30b3\u30a2":[11,33,39,73,75,119,122,140,172,173,174,198,211],"\u30b9\u30b3\u30a2\u30e9\u30fc":[],"\u30b9\u30b3\u30a2\u30fc":[],"\u30b9\u30b3\u30a2\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":172,"\u30b9\u30b3\u30fc\u30d7":171,"\u30b9\u30bf\u30a4\u30eb":[],"\u30b9\u30bf\u30c3\u30af\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":40,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3":[135,138],"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30fc\u30f3\u30e2\u30fc\u30c9":33,"\u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc":31,"\u30b9\u30c6\u30c3\u30d7":[85,171],"\u30b9\u30c6\u30df\u30f3\u30b0":[41,182],"\u30b9\u30c6\u30fc\u30bf\u30b9":[33,40,81,121,133,195],"\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9":39,"\u30b9\u30c6\u30fc\u30c8\u30d5\u30eb":195,"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9":[41,119,182,205],"\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,156],"\u30b9\u30d1\u30de\u30fc":[172,173,174],"\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":145,"\u30b9\u30da\u30eb":170,"\u30b9\u30da\u30fc\u30b9":[33,37,40,119],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8":[37,189],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30c1\u30e3\u30fc\u30c8":37,"\u30b9\u30ec\u30c3\u30c9":[0,9,33,50,65,90,97,102,121,125,128,135,136,189],"\u30b9\u30ec\u30c3\u30c9\u30bb\u30fc\u30d5":33,"\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb":65,"\u30b9\u30ed\u30fc\u30af\u30a8\u30ea\u30fc":[33,137],"\u30b9\u30ef\u30c3\u30d7":184,"\u30b9\u30fc\u30d7":196,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":196,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":196,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":196,"\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,82,85,87,89,90,95,96,97,101,102,103,104,105,106,107,109,115,116,117,118,119,121,123,125,126,127,128,129,131,133,137,142,145,149,160,165,170,171,172,173,174,176,177,178,180,184,195,202],"\u30bb\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u30d5\u30a9\u30eb\u30c8":39,"\u30bb\u30b0\u30e1\u30f3\u30c8":[41,60,83,92],"\u30bb\u30c3\u30b7\u30e7\u30f3":[112,135,195],"\u30bb\u30c3\u30c8":[11,60,63,64,84,127,196],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":[17,40,140],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u30b9\u30af\u30ea\u30d7\u30c8":21,"\u30bb\u30df\u30b3\u30ed\u30f3":136,"\u30bb\u30ec\u30af\u30bf\u30fc":[33,153],"\u30bb\u30f3\u30c8\u30e9\u30eb\u30d1\u30fc\u30af":207,"\u30bd\u30b1\u30c3\u30c8":[39,83,84,86,88,91,92,94,98,99,100,112,120,124],"\u30bd\u30d5\u30c8":170,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":[],"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8":203,"\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,85,87],"\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,119,122],"\u30bf\u30a4\u30c8\u30eb":[104,119,160,161,172,173,174,201,203,206],"\u30bf\u30a4\u30d7":[33,37,55,119,136,189],"\u30bf\u30a4\u30df\u30f3\u30b0":[39,204],"\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[40,45],"\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7":[36,177,178,180],"\u30bf\u30b0":[],"\u30bf\u30b0\u30c6\u30ad\u30b9\u30c8":183,"\u30bf\u30d6":[168,170,195],"\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":137,"\u30c0\u30a4\u30a2\u30ed\u30b0":40,"\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8":189,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":[],"\u30c0\u30d6\u30eb":[37,39,123,160,161,181],"\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":[107,129,135,204],"\u30c0\u30e1\u30fc\u30b8":198,"\u30c0\u30f3\u30d7":[33,35,39,40,94,184],"\u30c1\u30a7\u30c3\u30af":[33,35,37,39,40,41,50,83,109,125,133,134,136,143],"\u30c1\u30a7\u30c3\u30af\u30b5\u30e0":12,"\u30c1\u30e3\u30f3\u30af":[33,83],"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba":83,"\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8":83,"\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":184,"\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,107,123,127,129,136,148,149,150,156,164,167,171,183],"\u30c6\u30ad\u30b9\u30c8\u30ab\u30e9\u30e0":33,"\u30c6\u30ad\u30b9\u30c8\u30c7\u30fc\u30bf":123,"\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":136,"\u30c6\u30af\u30cb\u30c3\u30af":[172,173,174],"\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":136,"\u30c6\u30fc\u30d6\u30eb":[],"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[124,126],"\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,90,95,109,206],"\u30c7\u30a3\u30b9\u30af\u30d5\u30eb":33,"\u30c7\u30a3\u30b9\u30afi":123,"\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,83,129,137],"\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,91,94,96,97,100,102,103,104,115,119,121,122,123,127,129,134,135,136,137,145,146,154,160,161,162,168,172,174,184,185,189,195,196,198,201,202,204],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[39,85,123,178],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30dd\u30fc\u30c8":41,"\u30c7\u30d5\u30e9\u30b0":37,"\u30c7\u30d7\u30ed\u30a4":137,"\u30c7\u30e1\u30ea\u30c3\u30c8":181,"\u30c7\u30fc\u30bf":[],"\u30c7\u30fc\u30bf\u30ab\u30e9\u30e0":[115,133,173,174],"\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":[122,177],"\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb":136,"\u30c7\u30fc\u30bf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":189,"\u30c7\u30fc\u30bf\u30d9\u30fc":37,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b5\u30a4\u30ba":184,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b9\u30ad\u30fc\u30de":94,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":[40,184],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":[],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u30b3\u30de\u30f3\u30c9":175,"\u30c7\u30fc\u30e2\u30f3":[],"\u30c7\u30fc\u30e2\u30f3\u30d7\u30ed\u30bb\u30b9":137,"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":[40,41,135],"\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":202,"\u30c8\u30d4\u30c3\u30af":12,"\u30c8\u30e2":203,"\u30c8\u30e9\u30a4":[37,123,160,161,181],"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[],"\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5":[183,198],"\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\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":33,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[41,129],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30e2\u30fc\u30b8\u30e5\u30fc\u30eb":183,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fcapi":39,"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":[],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u30e2\u30fc\u30c9":[127,129],"\u30c8\u30fc\u30af\u30f3":[33,35,37,40,41,123,127,129,161,164,178,180,181,182,183,196],"\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\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":33,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":182,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":182,"\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,202],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[],"\u30ca\u30ce":[35,78],"\u30cb\u30c3\u30dd\u30f3":[153,167,177],"\u30cb\u30db\u30f3":[153,167,177],"\u30cb\u30db\u30f3\u30b4":177,"\u30cb\u30db\u30f3\u30b8\u30f3":177,"\u30cb\u30e5\u30fc\u30b9":162,"\u30cb\u30e5\u30fc\u30e8\u30fc\u30af":[145,207],"\u30cd\u30b9\u30c8":[33,39,40,41,206],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":[189,208],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":[39,195],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d7\u30ed\u30c8\u30b3\u30eb":39,"\u30ce\u30a4\u30ba":[178,198],"\u30ce\u30fc\u30c9":[39,64],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":[],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":33,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d7\u30b7\u30e7\u30f3":164,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[107,164],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":164,"\u30ce\u30fc\u30de\u30e9\u30a4\u30ba":[40,41,107,129,204],"\u30cf\u30a4\u30d5\u30f3":[123,204],"\u30cf\u30a4\u30e9\u30a4\u30c8":[148,149],"\u30cf\u30c3\u30b7\u30e5":[12,33,39,83],"\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb":[37,40,123,161,181],"\u30d0\u30a4\u30b0\u30e9\u30e0":[183,198],"\u30d0\u30a4\u30b0\u30e9\u30e0\u30d9\u30fc\u30b9":183,"\u30d0\u30a4\u30c8":[33,35,37,39,40,41,47,50,64,80,81,119,156,181,185],"\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,159],"\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":94,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":[40,53,135,160],"\u30d0\u30c3\u30c1\u30e2\u30fc\u30c9":39,"\u30d0\u30c3\u30d5\u30a1":[39,40,47,53,55,58,60,63,83,206],"\u30d0\u30c3\u30d5\u30a1\u30b5\u30a4\u30ba":33,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8":83,"\u30d0\u30c3\u30d5\u30a1\u30ea\u30f3\u30b0":40,"\u30d0\u30c3\u30d5\u30a1id":83,"\u30d0\u30ea\u30e5\u30fc\u30b5\u30dd\u30fc\u30c8":181,"\u30d0\u30eb\u30af":33,"\u30d0\u30eb\u30af\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":33,"\u30d0\u30f3\u30c9\u30eb":[33,40,41],"\u30d1\u30a4\u30d7":86,"\u30d1\u30b9":[12,28,33,35,36,37,41,51,87,110,111,114,133,134,135,136,137,138,141,189,195,204],"\u30d1\u30b9\u30b9\u30bf\u30a4\u30eb":171,"\u30d1\u30bf\u30fc\u30f3":[33,78,160,161,171],"\u30d1\u30bf\u30fc\u30f3\u30de\u30c3\u30c1":171,"\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":[33,35,37,40,123,160,161,181],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30c6\u30fc\u30d6\u30eb":[160,161],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30ce\u30fc\u30c9":33,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":[33,40,41,134,137,151,193],"\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":145,"\u30d1\u30fc\u30b5\u30fc":[12,160,171],"\u30d1\u30fc\u30b9":[37,52,53,159],"\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3":41,"\u30d2\u30c3\u30c8":[11,40,119,162,167,177,196,198,207,209],"\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2":[119,159,198],"\u30d2\u30e5\u30d9\u30cb":[145,146],"\u30d3\u30c3\u30b0\u30a8\u30f3\u30c7\u30a3\u30a2\u30f3":41,"\u30d3\u30c3\u30c8":[],"\u30d3\u30c3\u30c8\u30b7\u30d5\u30c8":161,"\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":[86,206],"\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":170,"\u30d5\u30a1\u30bb\u30c3\u30c8":119,"\u30d5\u30a3\u30eb\u30bf":[33,39],"\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0":40,"\u30d5\u30a3\u30eb\u30bf\u30fc":157,"\u30d5\u30a3\u30eb\u30bf\u30fc\u30c6\u30ad\u30b9\u30c8":119,"\u30d5\u30a3\u30fc\u30eb\u30c9":87,"\u30d5\u30a9\u30eb\u30c0\u30fc":31,"\u30d5\u30a9\u30ed\u30ef\u30fc":12,"\u30d5\u30a9\u30ed\u30fc":[],"\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8":207,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[],"\u30d5\u30a9\u30fc\u30e0":[40,119,159,160],"\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af\u30e2\u30fc\u30c9":33,"\u30d5\u30c3\u30af":21,"\u30d5\u30e9\u30b0":[33,34,37,38,39,41,50,64,75,83,84,86,87,88,91,98,99,100,107,119,123,129,160,161,164,171,195,201,204,205,209],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":92,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3":[34,92],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8":60,"\u30d5\u30e9\u30c3\u30b7\u30e5":33,"\u30d5\u30e9\u30f3\u30b9":145,"\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,208],"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":[],"\u30d6\u30e9\u30b8\u30ea\u30a2":145,"\u30d6\u30e9\u30b8\u30eb":145,"\u30d6\u30ed\u30b0":[],"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea":[119,160,161,206],"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea\u30fc":104,"\u30d6\u30ed\u30c3\u30af":[0,40,137],"\u30d6\u30fc\u30ea\u30a2\u30f3":185,"\u30d6\u30fc\u30eb":[185,201],"\u30d7\u30e9\u30b0\u30a4\u30f3":[0,17,24,25,26,28,30,33,34,35,36,37,39,40,41,94,101,102,103,104,105,110,111,114,117,118,154,158,164,170,175,182],"\u30d7\u30e9\u30b0\u30a4\u30f3api":41,"\u30d7\u30e9\u30b0\u30de":119,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0":[14,17,23,28,37],"\u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8":[],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9":[65,137,175,181,204],"\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,87,137,161],"\u30d7\u30ed\u30b7\u30fc\u30b8\u30e3":153,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[],"\u30d7\u30ed\u30bb\u30b9":[],"\u30d7\u30ed\u30bb\u30b9id":195,"\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3":137,"\u30d7\u30ed\u30c8\u30b3\u30eb":[],"\u30d7\u30ed\u30f3\u30d7\u30c8":168,"\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,135],"\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":136,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30d7\u30ed\u30b0\u30e9\u30e0":40,"\u30d9\u30fc\u30b7\u30c3\u30af":189,"\u30d9\u30fc\u30b9":[0,17,35,37,39,41,63,64,116,129,160,161,167,172,173,174,175,183,188,193],"\u30d9\u30fc\u30b9\u30d1\u30b9":137,"\u30da\u30a2":[33,119,170,177,178,179,180,201,210],"\u30da\u30fc\u30b8":[2,12,17,22,33,39,40,119,135,138,204],"\u30da\u30fc\u30b8\u30e9\u30f3\u30af":[172,173,174],"\u30da\u30fc\u30b9\u30c8":39,"\u30db\u30b9\u30c8":[12,37,39,134,135,136,195],"\u30dc\u30bf\u30f3":[12,17,39,40],"\u30dc\u30c3\u30af\u30b9":119,"\u30dc\u30c7\u30a3":[85,90,95,109,110,111,114,123,125,126,128,195],"\u30dd\u30a4\u30f3\u30bf":[50,60,61,63,64,67],"\u30dd\u30a4\u30f3\u30c8":[75,170],"\u30dd\u30b9\u30c6\u30a3\u30f3\u30b0\u30ea\u30b9\u30c8":33,"\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3":[37,40],"\u30dd\u30fc\u30c8":[40,134,135,136,168,189,193,195,208],"\u30de\u30a4\u30af\u30ed":[161,185,201,207],"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":[],"\u30de\u30af\u30c9\u30ca\u30eb\u30c9":166,"\u30de\u30af\u30ed":[33,37,40,60],"\u30de\u30b7\u30f3":[135,175],"\u30de\u30c3\u30c1":[],"\u30de\u30c3\u30c1\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":28,"\u30de\u30c3\u30d4\u30f3\u30b0":199,"\u30de\u30c3\u30d7":[33,90,184],"\u30de\u30c9\u30ea\u30fc\u30c9":145,"\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[33,40,41,87,206],"\u30de\u30eb\u30c1\u30b3\u30a2":0,"\u30de\u30eb\u30c1\u30b3\u30a2cpu":28,"\u30de\u30eb\u30c1\u30b9\u30ec\u30c3\u30c9":[33,41,90,116,189],"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3":40,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":88,"\u30de\u30eb\u30c1\u30d0\u30a4\u30c8":37,"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9":[37,189],"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30e2\u30c7\u30eb":41,"\u30de\u30eb\u30c1\u30e9\u30a4\u30f3\u30e2\u30fc\u30c9":171,"\u30de\u30fc\u30af":183,"\u30de\u30fc\u30af\u30a2\u30c3\u30d7":33,"\u30de\u30fc\u30b8":[17,39],"\u30df\u30b9":177,"\u30df\u30ea":[37,161,185,201,211],"\u30df\u30ea\u79d2":185,"\u30e1\u30bd\u30c3\u30c9":33,"\u30e1\u30bf\u30c7\u30fc\u30bf":[87,117,118,172,173,174],"\u30e1\u30bf\u30d1\u30c3\u30b1\u30fc\u30b8":39,"\u30e1\u30c3\u30bb\u30fc\u30b8":[6,7,33,41,77,207],"\u30e1\u30c3\u30bb\u30fc\u30b8\u30dc\u30c7\u30a3":40,"\u30e1\u30e2":[172,173,174],"\u30e1\u30e2\u30ea":[],"\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":14,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0":35,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":[14,33,34,35,37,39,40,41,86],"\u30e1\u30e2\u30ea\u30fc":[33,90,95,123,184],"\u30e1\u30e2\u30ea\u30fc\u30a2\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3":33,"\u30e1\u30e2\u30ea\u30fc\u30d6\u30ed\u30c3\u30af":121,"\u30e1\u30e2\u30ea\u30fc\u30de\u30c3\u30d7":184,"\u30e1\u30e2\u30ea\u30fc\u30ea\u30fc\u30af":[33,121],"\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u30b3\u30b9\u30c8":183,"\u30e1\u30f3\u30d0":63,"\u30e1\u30fc\u30c8\u30eb":[145,146],"\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,129,135,138,195,204],"\u30e6\u30fc\u30b6":[11,12,39,86,119,136,177,178,179,180,185,204],"\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,85,183],"\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,128],"\u30e9\u30d9\u30eb":[33,40,41,104,119],"\u30e9\u30f3\u30ad\u30f3\u30b0":[41,204],"\u30e9\u30f3\u30c0\u30e0":211,"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0":0,"\u30ea\u30af\u30a8\u30b9\u30c8":[],"\u30ea\u30af\u30a8\u30b9\u30c8gqtp":195,"\u30ea\u30af\u30a8\u30b9\u30c8id":[],"\u30ea\u30af\u30a8\u30b9\u30c8uri":137,"\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,95,96,102,105,119,123,124,135,160,161,164,166,170,171,182,183,203,204],"\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7":12,"\u30ea\u30bd\u30fc\u30b9":[],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":[],"\u30ea\u30c6\u30e9\u30eb":[],"\u30ea\u30c8\u30e9\u30a4":45,"\u30ea\u30cd\u30fc\u30e0":[33,37,85],"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed":137,"\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":[],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":[],"\u30ea\u30e9\u30a4\u30bf\u30fc":33,"\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,119,160,161,201],"\u30eb\u30fc\u30c8":37,"\u30eb\u30fc\u30d7":[33,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,81,85,103,119,121,189,195],"\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf":189,"\u30ec\u30b9\u30dd\u30f3\u30b9\u30d8\u30c3\u30c0\u30fc":[33,189],"\u30ec\u30d9\u30eb":[33,39,41,98,99,135],"\u30ec\u30dd\u30fc\u30c8":28,"\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0":0,"\u30ec\u30fc\u30bf":39,"\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0":143,"\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,184],"\u30ed\u30b0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":41,"\u30ed\u30b0\u30d1\u30b9":35,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":[28,33,77,100,119,135,136,199],"\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8":[33,39,40,171],"\u30ed\u30b0\u30ec\u30d9\u30eb":[33,137],"\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":[33,135],"\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":[33,34,37,39,40,45,60,84,97,135],"\u30ed\u30c3\u30af\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[40,45],"\u30ed\u30f3\u30c9\u30f3":145,"\u30ed\u30fc\u30ab\u30eb":[12,161],"\u30ed\u30fc\u30c6\u30fc\u30c8":135,"\u30ed\u30fc\u30c9":[],"\u30ed\u30fc\u30c9\u30a8\u30e9\u30fc":39,"\u30ed\u30fc\u30de":[],"\u30ed\u30fc\u30de\u30b8":[153,167],"\u30ef\u30a4\u30c9":37,"\u30ef\u30fc\u30ab":137,"\u30ef\u30fc\u30ab\u30fc":137,"\u30ef\u30fc\u30ab\u30fc\u30b9\u30ec\u30c3\u30c9":40,"\u30fb\u30b5\u30fc\u30d0":204,"\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":207,"\u30fb\u5168":91,"\u30fb\u5186":0,"\u30fb\u6d6e\u52d5\u5c0f":119,"\u30fb\u81ea\u5df1\u7d39":207,"\u30fbgroonga":33,"\u30fbor":211,"\u30fbroot":33,"\u4e00\u3064":[0,46,47,50,63,77,83,84,86,88,91,92,94,98,99,100,112,120,124,144,145,146,147,150,152,155,157,158,185,196,201],"\u4e00\u4ef6":[],"\u4e00\u4ef6\u9032\u3081":64,"\u4e00\u500b":11,"\u4e00\u5207":33,"\u4e00\u5bfe":201,"\u4e00\u5de5":209,"\u4e00\u5ea6":[37,39,41,45,110,114,137,162,164,170,184,202,206],"\u4e00\u5f0f":60,"\u4e00\u610f":[73,86,116,135],"\u4e00\u62ec":[],"\u4e00\u62ec\u3057":63,"\u4e00\u6587":[],"\u4e00\u6587\u5b57":[33,41],"\u4e00\u65b9":[0,65,68,119,149,154,156,157,160,161,183,198,201,204,206],"\u4e00\u6642":[],"\u4e00\u6642\u30c6\u30fc\u30d6\u30eb":[],"\u4e00\u6642\u7684":[33,60,125,199],"\u4e00\u6642\u7d50\u679c":39,"\u4e00\u6b69":204,"\u4e00\u6c17":12,"\u4e00\u756a":[28,75,119,189],"\u4e00\u756a\u5de6":161,"\u4e00\u77ed":0,"\u4e00\u7dd2":[34,39,41,47,50,75,119,123,145,158,183,198,204],"\u4e00\u7fa4":11,"\u4e00\u81f4":[],"\u4e00\u81f4\u3057":[41,196],"\u4e00\u81f4\u7528":209,"\u4e00\u81f4rk":[],"\u4e00\u822c":[0,46,60,119,159,160,204],"\u4e00\u822c\u7684":[0,183],"\u4e00\u884c":[35,135,136],"\u4e00\u89a7":[],"\u4e00\u8a9e":198,"\u4e00\u8cab":[],"\u4e00\u8cab\u6027":[10,33],"\u4e00\u90e8":[12,33,39,88,175,179,183,204],"\u4e00\u9577":0,"\u4e09\u3064":[145,196],"\u4e09\u756a\u76ee":161,"\u4e09\u7a2e":[],"\u4e09\u8c37":41,"\u4e09\u8c37\u3055\u3093":41,"\u4e0a\u304c\u3063":183,"\u4e0a\u3052\u308b":198,"\u4e0a\u4f4d":[63,198],"\u4e0a\u554f":193,"\u4e0a\u66f8\u304d":[12,211],"\u4e0a\u8a18":[17,21,28,32,33,39,101,119,123,136,143,150,154,157,170,178,180,183,195,198,202,204,211],"\u4e0a\u8a18url":12,"\u4e0a\u8ff0":170,"\u4e0a\u91ce":35,"\u4e0a\u9650":[],"\u4e0b\u304c\u3063":183,"\u4e0b\u304c\u308a":198,"\u4e0b\u3052":33,"\u4e0b\u3055\u3044":[1,12,23,24,25,26,30,31,39,40,63,87,129],"\u4e0b\u66f8\u304d":166,"\u4e0b\u8a18":[11,64,77,83],"\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":95,"\u4e0d\u6574\u5408":34,"\u4e0d\u6b63":[14,33,34,35,37,40,41,95,123],"\u4e0d\u6b63\u78ba":39,"\u4e0d\u80fd":136,"\u4e0d\u8981":[0,33,39,40,41,183],"\u4e0d\u8db3":[23,24,25,26,30,31,33,41],"\u4e0d\u9069\u5207":[39,41],"\u4e0e\u3048":[11,39,40,52,64,96,135,195,198,204],"\u4e0e\u3048\u308b":[77,96,134,135,211],"\u4e16\u4ee3":77,"\u4e16\u754c":[145,146,147,185,201,211],"\u4e21\u65b9":[0,75,104,119,160,161,162,171,177,181,183,207,209],"\u4e21\u8005":211,"\u4e26\u3073":[161,196],"\u4e26\u3073\u9806":211,"\u4e26\u3079":[],"\u4e26\u5217":[],"\u4e2d\u4e95":40,"\u4e2d\u56fd":145,"\u4e2d\u592e\u5024":41,"\u4e2d\u5fc3":146,"\u4e2d\u65ad":[37,39,41,55],"\u4e2d\u7a0b\u5ea6":[23,24,25,26,30,31],"\u4e2d\u8eab":[41,136,195,204],"\u4e2d\u9593":[11,196],"\u4e38\u62ec":204,"\u4e3b\u30ad\u30fc":[],"\u4e3b\u8981":23,"\u4e43\u6bc5":35,"\u4e57\u308a":101,"\u4e71\u6570":[155,211],"\u4e88\u3081":[135,185],"\u4e88\u5b9a":[16,33,37,75,77,117,118,145,156,171,175,189],"\u4e88\u7d04":86,"\u4e8b\u524d":[12,101,102,103,105,117,118,179,198],"\u4e8b\u67c4":10,"\u4e8b\u9805":[],"\u4e8c\u3064":[11,50,77,101,103,104,106,107,129,136,145,151,153,154,157,196],"\u4e8c\u3064\u76ee":[],"\u4e8c\u70b9\u9593":[],"\u4e8c\u756a":[],"\u4e8c\u756a\u76ee":161,"\u4e8c\u91cd":[33,40,41,160],"\u4e8c\u9805":161,"\u4e92\u63db":[12,24,25,26,30,33,41,77,104,107,138,161,173,174,189],"\u4e92\u63db\u6027":12,"\u4e94\u5165":37,"\u4eac\u90fd":[183,196,198],"\u4eba\u3068":10,"\u4eba\u5411\u3051":33,"\u4eca\u56de":[39,156,161,204],"\u4eca\u5f8c":[37,100,117,129,171],"\u4ecb\u3057":[0,208],"\u4ecb\u6587":207,"\u4ed5\u65b9":[],"\u4ed5\u69d8":[],"\u4ed5\u7d44":[17,33,189],"\u4ed5\u7d44\u307f":[33,39,137],"\u4ed8\u3044":164,"\u4ed8\u304d":[],"\u4ed8\u3051":[39,80,93,116,143,148,149,189,195,201,204,206],"\u4ed8\u3051\u308b":[9,161,164,182,204,210],"\u4ed8\u3051\u65b9":80,"\u4ed8\u4e0e":[],"\u4ed8\u5c5e":[137,138],"\u4ed8\u968f":88,"\u4ee3\u308a":[39,145,160],"\u4ee3\u308f\u308a":[28,31,33,119,121,123,135,137,148,149,156,160,164,171,183,195],"\u4ee3\u5165":[],"\u4ee3\u8868":0,"\u4ee5\u4e0a":[],"\u4ee5\u4e0b":[],"\u4ee5\u5185":[161,177,178,207,211],"\u4ee5\u524d":[33,37,39,40,41,164,198,201,207],"\u4ee5\u5916":[0,11,12,35,37,40,41,46,47,50,51,53,57,60,63,66,68,75,104,115,119,123,133,136,160,166,171,181,185],"\u4ee5\u964d":[12,14,17,33,35,37,40,41,89,101,126,135,148,149,150,164,166,183,208],"\u4eee\u540d":167,"\u4eee\u5b9a":116,"\u4eee\u60f3":[12,33,40,202,211],"\u4ef6\u540c":33,"\u4ef6\u542b":207,"\u4ef6\u6570":[33,41,60,63,73,96,196,198,204],"\u4efb\u610f":[0,12,135,136,204],"\u4f1a\u793e":[33,41],"\u4f1d\u7d71":0,"\u4f3c\u305f":164,"\u4f4e\u3044":198,"\u4f4e\u304f":[183,198],"\u4f4e\u4e0b":40,"\u4f4e\u6a5f":11,"\u4f4e\u6e1b":[35,193],"\u4f4f\u3093":207,"\u4f4f\u6240":39,"\u4f50\u85e4":33,"\u4f53\u8fd1":146,"\u4f55\u3089\u304b":185,"\u4f55\u500b":119,"\u4f55\u5ea6":[40,116],"\u4f59\u308a":161,"\u4f59\u8a08":10,"\u4f5c\u3063":[37,63,64,109,137,164,177,198,202],"\u4f5c\u3089":[33,101],"\u4f5c\u3089\u308c":[41,136],"\u4f5c\u308a":[41,115,121,123,177,178,184,206],"\u4f5c\u308a\u76f4\u3057":115,"\u4f5c\u308a\u76f4\u3059":[33,115],"\u4f5c\u308c\u308b":33,"\u4f5c\u6210":[],"\u4f5c\u6210\u6e08":135,"\u4f5c\u696d":[],"\u4f5c\u7528":39,"\u4f75\u305b":204,"\u4f7f\u3044":[],"\u4f7f\u3044\u5206\u3051":[196,198],"\u4f7f\u3044\u65b9":[],"\u4f7f\u3046":[],"\u4f7f\u3048":[6,8,21,33,37,40,41,85,90,103,104,115,116,119,123,129,137,142,143,159,160,161,167,171,172,173,174,175,183,187,188,202,204],"\u4f7f\u3048\u308b":[21,28,33,37,39,40,41,119,135,160,171,175],"\u4f7f\u3063":[],"\u4f7f\u308f":[12,21,33,37,40,41,46,50,81,95,102,104,109,119,123,125,129,137,143,159,160,164,167,170,171,177,181,183,195,202,203,210],"\u4f7f\u308f\u305a":154,"\u4f7f\u7528":[],"\u4f7f\u7528\u4f8b":145,"\u4f8b\u3068\u3057\u3066":[184,201],"\u4f8b\u3068\u3068\u3082":145,"\u4f8b\u5916":[26,33,41,85,117,118],"\u4f9d\u5b58":[],"\u4fbf\u5229":[0,1,6,7,28,33,47,75,78,101,102,107,115,119,129,159,160,167,171,177,201],"\u4fc2\u6570":[11,119],"\u4fdd\u5b58":[],"\u4fdd\u6301":[46,50,201,205,207],"\u4fdd\u8a3c":[77,83],"\u4fee\u5e73":41,"\u4fee\u6b63\u4e2d":178,"\u500b\u3005":[11,77,101,103,106,198],"\u500b\u4eba":28,"\u500b\u5225":12,"\u500b\u5b9a":9,"\u500b\u6240":41,"\u500b\u6570":[39,47],"\u500d\u7cbe":185,"\u5019\u88dc":[122,153,177,178,179],"\u5024\u304b":145,"\u5024\u3054":202,"\u5024\u3054\u3068":202,"\u5024\u3060\u3051":161,"\u5024\u3068":[119,160,201],"\u5024\u3068\u3057\u3066":[135,145,199,207],"\u5024\u306a\u3057":38,"\u5024\u306a\u3089":40,"\u5024\u3088\u308a":[11,119],"\u5024\u4ee5\u4e0a":135,"\u5024\u578b":201,"\u5024\u57df":71,"\u5024\u6bce":202,"\u5024\u7528":37,"\u5024\u8a18":161,"\u505c\u6b62":[33,40,77,89,120,126,135],"\u5065\u4f5c":203,"\u5074\u9762":0,"\u5076\u6570":161,"\u5099\u8003":40,"\u50be\u5411":206,"\u512a\u308c":[0,183],"\u512a\u5148":[0,33,90,136,177],"\u5143\u6c17":40,"\u5148\u60c5":207,"\u5148\u982d":[55,60,119,137,171,183,204],"\u5149\u7537":40,"\u5165\u3063":[14,33,39,40,78,177,195,203,204,206],"\u5165\u308a":[],"\u5165\u308b":124,"\u5165\u308c":[183,198,203,207],"\u5165\u308c\u308b":[33,171],"\u5165\u529b":[34,37,38,40,78,83,84,86,88,91,92,94,96,98,99,100,112,119,122,124,134,135,136,161,167,177,178,179,180,195,204],"\u5165\u529b\u30df\u30b9":178,"\u5168\u304f":33,"\u5168\u3066":[17,63,119,137,159,162,185,206],"\u5168\u4e16\u754c":40,"\u5168\u4ef6":[64,160,161],"\u5168\u4f53":[],"\u5168\u6587\u691c":[],"\u5168\u6587\u691c\u7d22":[],"\u5168\u89d2":[33,37,64,164,204],"\u5168\u90e8":195,"\u5168suffix":63,"\u516c\u5e73":40,"\u516c\u5f0f":[8,24,26,37,154],"\u516c\u8f14":40,"\u516c\u958b":[12,33,35,37,40,41,46],"\u516c\u958b\u9375":12,"\u5171\u306b":[47,60],"\u5171\u901a":[10,37,101,103,106,161,181,185,206],"\u5171\u901a\u63a5":181,"\u5177\u4f53":[119,198,202,206],"\u5177\u4f53\u4f8b":[85,104],"\u5177\u5408":[119,161],"\u5178\u578b":33,"\u5185\u5bb9":[10,12,17,33,39,41,51,55,58,64,78,87,104,119,124,134,136,156,160,161,177,180,184,193,201,204,206,207,208],"\u5185\u8a33":198,"\u5185\u8fd1\u304f":161,"\u5185\u90e8":[12,33,38,41,46,50,56,60,63,156,201],"\u5186\u6ed1":12,"\u518d\u3073":41,"\u518d\u4f5c":33,"\u518d\u5229":[33,41,73,181],"\u518d\u5e30":[11,60,84,97,119,137,170],"\u518d\u5ea6":[11,33,41,45],"\u518d\u691c":159,"\u518d\u69cb":37,"\u518d\u73fe":[10,40,159,183,198],"\u518d\u751f":137,"\u518d\u767a":41,"\u518d\u8aad":[100,170],"\u518d\u8d77":[33,170,184,193],"\u518d\u8d77\u52d5":[],"\u51e6\u7406":[0,6,7,11,17,33,34,35,39,40,41,55,73,76,81,95,97,107,119,121,123,127,129,136,137,149,156,160,161,182,183,189,195,196,211],"\u51fa\u3055":40,"\u51fa\u3057":207,"\u51fa\u3059":207,"\u51fa\u305b\u308b":0,"\u51fa\u529b":[],"\u51fa\u6765":[129,203,206],"\u51fa\u6765\u308b":207,"\u51fa\u73fe":[0,33,47,87,122,172,173,174,205],"\u5206\u304b\u3061":0,"\u5206\u3051":[],"\u5206\u3051\u308b":[12,201],"\u5206\u307e":175,"\u5206\u5272":[0,33,37,161,181,183,196,204],"\u5206\u5c90":14,"\u5206\u6563":175,"\u5206\u6790":0,"\u5206\u89e3":[11,175],"\u5206\u914d":104,"\u5206\u985e":[201,202],"\u5206z":185,"\u5207\u3089":41,"\u5207\u308a":[12,33,37,40,41,112],"\u5207\u308a\u6368\u3066":201,"\u5207\u308b":[41,137],"\u5207\u308c":33,"\u5217\u4e2d":161,"\u5217\u578b":[41,160,201,202],"\u5217\u5f0f":53,"\u5217\u5f15":11,"\u5217\u60c5":129,"\u5217\u6307\u5411":0,"\u5217\u6319":204,"\u5217\u8868":[53,185],"\u521d\u56de":17,"\u521d\u671f":[0,35,37,39,41,51,60],"\u521d\u671f\u5024":134,"\u521d\u671f\u5316":[33,39,50,61,68],"\u5224\u5b9a":211,"\u5224\u65ad":[51,119,161],"\u5225\u3005":[119,202],"\u5225\u540d":33,"\u5225\u9014":[60,185],"\u5229\u70b9":0,"\u5229\u7528":[],"\u5229\u7528\u4f8b":0,"\u5230\u9054":32,"\u5236\u5fa1":[],"\u5236\u7d04":32,"\u5236\u9650":[],"\u5247\u3063":175,"\u524a\u6e1b":[],"\u524a\u9664":[],"\u524d\u3082\u3063":33,"\u524d\u4ed8":103,"\u524d\u4ed8\u304d":60,"\u524d\u56de":12,"\u524d\u5f8c":[135,204],"\u524d\u63d0":[],"\u524d\u65b9":[],"\u524d\u65b9\u4e00\u81f4":[],"\u524d\u8005":[164,170,211],"\u524d\u8ff0":[123,137,164,198],"\u5270\u4f59":[],"\u5272\u3063":[172,174],"\u5272\u308a":[],"\u5272\u308a\u5f53\u3066":[35,46],"\u5272\u308a\u5f53\u3066\u308b":[80,181,201,204],"\u5272\u308b":174,"\u5272\u5408":121,"\u52a0\u3048":[11,21,95,201,209],"\u52a0\u3048\u308b":[37,86,95],"\u52a0\u308f\u308b":10,"\u52a0\u7b97":[],"\u52a3\u5316":33,"\u52b9\u679c":[102,207],"\u52b9\u7387":[33,95,206],"\u52c9\u5f37":183,"\u52d5\u3044":[33,65],"\u52d5\u304b":[33,40,41,90,171],"\u52d5\u304b\u3057":184,"\u52d5\u304d":[33,119,128,175,189],"\u52d5\u304f":[28,37,39,184,188],"\u52d5\u4f5c":[],"\u52d5\u5c0f":185,"\u52d5\u74b0":134,"\u52d5\u753b":203,"\u52d5\u7684":[],"\u52e7\u3081":41,"\u5316\u4f5c":12,"\u5316\u51e6":[37,73],"\u5316\u524d":73,"\u5316\u5bfe":17,"\u5316\u65b9":[107,164],"\u5316\u6642":37,"\u5316\u6e08":[51,60],"\u5316\u6f0f\u308c":39,"\u5316\u95a2":35,"\u5317\u4eac":145,"\u5317\u534a\u7403":39,"\u533a\u5207\u3063":[107,119,127,129,195],"\u533a\u5207\u3089":37,"\u533a\u5207\u308a":[0,33,39,94,96,119,122,129,134,135,160,161,168,180,183,185,201,202,204],"\u533a\u5207\u308b":[35,119,170],"\u533a\u5225":[119,171,185,209],"\u5341\u4e00":[],"\u5341\u5206":[58,198,199],"\u5341\u5206\u6c17":119,"\u5343\u4e07":[],"\u534a\u5f84":146,"\u534a\u7121":[37,123],"\u534a\u89d2":[64,164,204],"\u5354\u529b":[],"\u5357\u534a":39,"\u5358\u306b":[40,118],"\u5358\u4e00":86,"\u5358\u4f4d":[0,33,35,37,66,76,78,121,145,146,156,161,183,185,195,196,204,207],"\u5358\u4f53":[0,136],"\u5358\u72ec":[47,136],"\u5358\u7d14":[11,80,146,209],"\u5358\u8a9e":[],"\u535a\u4e4b":33,"\u5360\u6709":60,"\u5371\u967a":[12,89,97,126,189],"\u5373\u5ea7":33,"\u539f\u56e0":[],"\u539f\u99c5":211,"\u53b3\u5bc6":[33,41,177],"\u53c2\u52a0":[2,3],"\u53c2\u7167\u5143":201,"\u53c2\u7167\u5148":40,"\u53ca\u3073":136,"\u53cb\u4eba":203,"\u53cc\u65b9":10,"\u53cd\u6620":[0,11,12,184],"\u53cd\u8ee2":161,"\u53ce\u307e\u308a\u304d\u3089":33,"\u53ce\u96c6":[0,78],"\u53d6\u308a\u51fa\u3055":201,"\u53d6\u308a\u51fa\u3057":[57,64,204],"\u53d6\u308a\u51fa\u3059":[11,35,57,64,201],"\u53d6\u308a\u5f97\u308b":185,"\u53d6\u308a\u8fbc\u307e":12,"\u53d6\u308a\u8fbc\u307f":37,"\u53d6\u308a\u9664\u3044":63,"\u53d6\u308a\u9664\u304d":[11,150],"\u53d6\u308b":[161,195],"\u53d6\u308c\u308b":96,"\u53d6\u5f97":[],"\u53d7\u3051":[9,33,39,40,41,80,116,137,143,145,161,189,195,204,210],"\u53d7\u3051\u308b":[41,193],"\u53d7\u3051\u4ed8\u3051":[35,39,161],"\u53d7\u3051\u53d6\u3063":0,"\u53d7\u3051\u53d6\u308a":[11,137,204],"\u53d7\u4ed8":[40,210],"\u53e4\u3044":[],"\u53e4\u304f":41,"\u53ef\u5426":204,"\u53ef\u5909":[37,87,92,195],"\u53ef\u8aad":41,"\u53f3\u4e0a":34,"\u53f3\u4e0b":[34,147],"\u53f3\u8fba":[33,35,37],"\u5404\u51fa":119,"\u5404\u52d9":33,"\u5404\u547d":136,"\u5404\u56fd":12,"\u5404\u7a2e":12,"\u5404\u7d22":204,"\u5404\u8981":75,"\u5404\u8a9e":83,"\u5408\u308f\u305b":[12,39,47,161],"\u5408\u7406":183,"\u5408\u81f4":[204,211],"\u5408\u8a08":[32,41,83,119,136,172,181,198,199],"\u5409\u5ca1":33,"\u5409\u7530":40,"\u540c\u3058":[],"\u540c\u3058\u4f8b":206,"\u540c\u3058\u5024":[137,204],"\u540c\u3058\u578b":75,"\u540c\u3058\u6570":[135,137,189],"\u540c\u3058\u6708":33,"\u540c\u3058\u91cd\u307f":154,"\u540c\u4e00":[],"\u540c\u6642":[0,9,33,63,64,77,119,136,211],"\u540c\u671f":[12,136],"\u540c\u68b1":[17,35,39,41],"\u540c\u69d8":[11,12,64,136,166,195,201,211],"\u540c\u7b49":[33,136,196],"\u540c\u7fa9":170,"\u540d\u4e00":[],"\u540d\u524d":[],"\u540d\u79f0":33,"\u540d\u7b49":60,"\u540dn":124,"\u5411\u3044":[41,78,119,181],"\u5411\u3051":[],"\u5411\u4e0a":[37,137,159,189,193],"\u5426\u304b":[101,103,106,143],"\u5426\u5b9a":[],"\u542b\u307e":[6,11,12,24,33,39,41,78,85,87,90,95,96,101,104,110,111,114,117,118,119,123,124,125,126,143,151,154,156,160,161,170,172,173,174,180,183,189,196,204,207],"\u542b\u307e\u308c":[0,40,78,104,110,111,114,119,123,143,156,196],"\u542b\u307e\u308c\u308b":[0,11,12,119,135,148,149,198,201,204],"\u542b\u307f":[33,64,78,104],"\u542b\u3080":[9,11,33,39,40,41,75,85,86,101,119,122,126,134,160,161,173,174,196,204,206,207],"\u542b\u3080\u5024":[135,204],"\u542b\u3080\u5168\u3066":89,"\u542b\u3081":[12,119,143,160,170],"\u542b\u3081\u308b":[12,37,38,41,94,101,103,104,106,107,119,129,160,170,204],"\u542b\u3093":[11,41,78,119,156,160,161,172,173,178,179,183,201,207],"\u5438\u53ce":204,"\u5468\u4e0a":146,"\u5468\u8fba":[39,156],"\u547c\u3070":[33,40,50,61,63,65,119,161,172,185,204],"\u547c\u3073":[11,68,75,119,135,136,156,201],"\u547c\u3073\u5143":50,"\u547c\u3073\u51fa\u3055":[55,119],"\u547c\u3073\u51fa\u3057":[],"\u547c\u3073\u51fa\u3059":[102,128,144,146,147,152,155,159],"\u547c\u3076":[14,33,39,65,68,89,126,159],"\u547c\u3076\u524d":68,"\u547c\u3093":[41,68,119,196,202],"\u547c\u51fa":[47,58,60,63],"\u547d\u4ee4":[],"\u547d\u540d":[39,104],"\u548c\u5e83":40,"\u552f\u4e00":128,"\u554f\u3044\u5408\u308f":11,"\u554f\u984c":[12,17,33,34,35,36,37,39,40,41,46,50,83,86,136,137,160,161,183,199,204],"\u559c\u3073":[16,17],"\u56db\u3064":196,"\u56db\u5247":41,"\u56db\u6368":37,"\u56db\u89d2":[],"\u56db\u89d2\u5f62":166,"\u56de\u52d5":136,"\u56de\u540c":33,"\u56de\u547c":35,"\u56de\u6307\u5b9a":160,"\u56de\u6570":[39,184],"\u56de\u7279":136,"\u56de\u7e70\u308a":136,"\u56de\u9001\u308b":116,"\u56de\u907f":[],"\u56f0\u3063":10,"\u56f0\u96e3":[0,39],"\u56f2\u307e":[149,156],"\u56f2\u307f":[135,148,149,156],"\u56f2\u3080":[40,156,204],"\u56f2\u3093":161,"\u56fa\u5b9a":[41,60,64,87,123,195,204],"\u56fa\u5b9a\u9577":35,"\u56fa\u6709":[55,75],"\u56fd\u3054":202,"\u56fd\u540d":202,"\u56fd\u969b":17,"\u56fd\u969b\u5316":[],"\u570f\u5185":207,"\u5727\u7e2e":[],"\u5730\u56f3":0,"\u5730\u57df":0,"\u5730\u5f62":[145,146],"\u5730\u70b9":[145,211],"\u5730\u7cfb":145,"\u578b\u304b":185,"\u578b\u3068\u3057\u3066":185,"\u578b\u540d":[87,119],"\u578b\u5909":37,"\u578b\u60c5":39,"\u578b\u6307":39,"\u578b\u7528":53,"\u57cb\u3081\u8fbc\u307e":12,"\u57cb\u3081\u8fbc\u307f":[149,156],"\u57cb\u3081\u8fbc\u3080":136,"\u57f7\u7b46":[166,205,206],"\u57fa\u6570":161,"\u57fa\u672c":[],"\u57fa\u6e96":[0,12,201,204],"\u57fa\u76e4":50,"\u5831\u4ee5":129,"\u5831\u544a":[],"\u5834\u5408":[],"\u5834\u6240":[],"\u5883\u754c":[39,101,103,106,145],"\u5897\u3048":[75,117,121,129,171,174,206],"\u5897\u3048\u308b":[33,108,130],"\u5897\u3084":[6,7,33,65,75],"\u5897\u3084\u3059":[14,65,75,119,171,184],"\u5897\u5206":119,"\u5897\u52a0":[40,119],"\u5897\u5927":145,"\u58ca\u3057":[33,133],"\u58ca\u3059":39,"\u58ca\u308c":[33,35,37,39,83,115,125,133],"\u58ca\u308c\u308b":[33,34,35,37,39,40,41,97],"\u5909\u3048":85,"\u5909\u3048\u308b":[85,119,183,198],"\u5909\u308a":41,"\u5909\u308f\u3063":[85,183],"\u5909\u308f\u308a":[33,82,83,116,183,196,211],"\u5909\u308f\u308b":[148,149,156,183,198],"\u5909\u5316":[0,33],"\u5909\u63db":[],"\u5909\u6570":[12,14,29,33,36,37,38,39,40,41,61,69,119,161,170],"\u5909\u66f4":[],"\u5909\u66f4\u5f8c":[48,50,52,59,60,63],"\u5909\u66f4\u70b9":[],"\u5916\u90e8":9,"\u591a\u3044":[160,161,167,198],"\u591a\u304f":[37,95,104,119,123,137,153,156,160,161,171,174,183,188,193,198,201,204],"\u591a\u3059\u304e":35,"\u591a\u3059\u304e\u308b":119,"\u591a\u5f69":0,"\u591a\u69d8":0,"\u591a\u91cd":134,"\u591a\u9762":0,"\u5927\u304d":[39,75,83,123,137,181,184],"\u5927\u304d\u3044":[11,33,37,41,90,119,133,160,181,183,184],"\u5927\u304d\u304f":[35,77,94,146,173,201],"\u5927\u304d\u3055":181,"\u5927\u304d\u306a":[123,184,189],"\u5927\u4e08":19,"\u5927\u4e08\u592b":[10,28],"\u5927\u4e8b":[160,170],"\u5927\u5207":0,"\u5927\u5225":201,"\u5927\u62b5":137,"\u5927\u6587":[119,171],"\u5927\u6587\u5b57":[41,123,153,171,204],"\u5927\u898f\u6a21":0,"\u5927\u8cb4":39,"\u5927\u91cf":[11,41,123,125,172,173,181,203,204],"\u5927\u95a2":41,"\u592a\u90ce":203,"\u592b\u5fc5":209,"\u5931\u308f":39,"\u5931\u52b9":[82,137],"\u5931\u6557":[12,33,35,37,39,40,41,45,46,69,85,86,89,90,93,95,97,110,111,114,115,119,123,125,126,131,160,171,204],"\u5947\u5999":171,"\u5947\u6570":161,"\u5968\u6271\u3044":41,"\u597d\u304d":17,"\u59a5\u5f53":[33,181],"\u59cb\u307e\u3063":[78,167,179],"\u59cb\u307e\u308a":12,"\u59cb\u307e\u308b":[41,63,73,86,119,136,160,161,170,177,179,183,189],"\u59cb\u3081":17,"\u59cb\u70b9":204,"\u5b09\u3057\u304f":10,"\u5b50\u5348\u7dda":145,"\u5b57\u5165":167,"\u5b57\u5217":[37,41,123,160,185],"\u5b57\u5c0f":[119,171],"\u5b58\u5426":60,"\u5b58\u5728":[0,33,34,35,39,40,41,50,60,63,64,73,78,94,104,109,116,119,136,137,143,146,147,175,183,193,195,196,199,202,204,206,211],"\u5b66\u3073":[104,119,145,202],"\u5b66\u3093":207,"\u5b66\u7fd2":[],"\u5b89\u5168":[33,195],"\u5b89\u5b9a":[0,38,77,83],"\u5b89\u5fc3":10,"\u5b8c\u4e86":[12,17,119],"\u5b8c\u5168":[],"\u5b8c\u74a7":174,"\u5b8c\u7d50":10,"\u5b9a\u5024":39,"\u5b9a\u5b50":171,"\u5b9a\u6570":33,"\u5b9a\u7fa9":[11,33,39,41,47,55,61,63,66,73,85,86,88,91,93,94,101,104,119,124,135,143,145,148,149,150,151,153,154,156,157,158,160,161,162,170,171,172,173,174,175,185,195,204,206],"\u5b9f\u4f53":50,"\u5b9f\u4f8b":[],"\u5b9f\u51e6":[11,61],"\u5b9f\u6570":185,"\u5b9f\u65bd":12,"\u5b9f\u73fe":[],"\u5b9f\u7528":41,"\u5b9f\u7a3c":134,"\u5b9f\u884c":[],"\u5b9f\u884c\u4f8b":[14,39,75,77,78,82,85,87,89,90,93,95,97,101,102,104,105,107,108,109,110,111,114,115,117,118,119,121,122,123,124,125,126,127,128,129,130,131,137,140,143,145,148,149,150,151,153,154,156,157,158,160,161,162,163,164,167,171,172,173,174,177,178,180,182,183,195,201,202,203,204,206,207,208,209,210,211],"\u5b9f\u88c5":[17,33,37,39,41,65,85,104,117,118,119,137,138,145,174,175,188],"\u5b9f\u969b":[32,40,65,101,103,104,106,119,121,172,184,198,203,206],"\u5b9f\u9a13":[],"\u5bb9\u91cf":[33,83],"\u5bc6\u9375":[],"\u5bfe\u3057":[160,161],"\u5bfe\u51e6":41,"\u5bfe\u5fdc":[],"\u5bfe\u7167":154,"\u5bfe\u7b56":[],"\u5bfe\u8a71":[195,204],"\u5bfe\u8c61":[0,9,11,12,14,17,28,33,37,38,41,47,50,51,53,57,60,62,63,64,71,77,84,86,88,91,92,93,94,95,96,97,104,109,115,116,119,122,123,125,129,133,134,148,149,151,154,156,158,160,171,172,173,174,189,196,198,203,204,206,207],"\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,195,208],"\u5c06\u6765":[40,75,101,107,108,117,118,130,145,175,189,195],"\u5c0e\u5165":[14,33,41,77],"\u5c0f\u3055":33,"\u5c0f\u3055\u3044":[11,36,64,119,123,146,160,173,181,183],"\u5c0f\u3055\u304f":[33,41,145,146,162,171,181,184,189],"\u5c0f\u306a\u308a":[],"\u5c0f\u5024":[101,103,104,106],"\u5c0f\u6570":[],"\u5c0f\u6570\u70b9":201,"\u5c0f\u6587\u5b57":[64,123,129,153,164,171,204],"\u5c0f\u897f":40,"\u5c11\u304f":199,"\u5c11\u3057":[28,174],"\u5c11\u3057\u9055\u3044":119,"\u5c11\u306a\u3044":[41,119,159,160,161,162,170],"\u5c11\u306a\u304f":[0,10,33,90,156,160,161,162,184],"\u5c11\u306a\u3051\u308c":123,"\u5c1a\u4e5f":40,"\u5c3a\u5ea6":0,"\u5c55\u958b":[],"\u5c55\u958b\u5f8c":119,"\u5c55\u958b\u7528":37,"\u5c5e\u3057":[71,185,202],"\u5c5e\u3059\u308b":[47,60,64,124],"\u5c5e\u6027":[36,86,107,108,124,129,130,150],"\u5c65\u6b74":12,"\u5c71\u672c":41,"\u5ca9\u4e95":[39,40],"\u5cf6\u7530":39,"\u5d8b\u7530":39,"\u5de6\u4e0a":[34,147],"\u5de6\u4e0b":34,"\u5de6\u53f3":204,"\u5dee\u3057":12,"\u5dee\u5206":136,"\u5dee\u96c6\u5408":161,"\u5e02\u5185":166,"\u5e03\u6559":3,"\u5e38\u306b":33,"\u5e73\u5747":[41,119],"\u5e73\u884c":12,"\u5e74\u9f62":[0,123],"\u5e83\u304f":[12,171],"\u5ea6\u3068":37,"\u5ea6\u5206":185,"\u5ea6\u5408\u3044":198,"\u5ea6\u6570":[37,161,201,211],"\u5ea6\u6d6e":185,"\u5ea6\u8868":35,"\u5ea6y":185,"\u5ea7\u6a19":[37,145,146,147,161,166,207],"\u5ea7\u6a19\u5024":[],"\u5ec3\u6b62":[77,167],"\u5f0f\u5168":[160,161],"\u5f0f\u8868":53,"\u5f0f\u96c6\u5408":171,"\u5f15\u3044":161,"\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,135],"\u5f15\u8a9e":204,"\u5f31\u70b9":0,"\u5f35\u3063":[33,40,119,125],"\u5f35\u3089":[33,39,40,47,95,173,174,201],"\u5f35\u308b":[125,160,161],"\u5f35\u308c\u308b":40,"\u5f37\u5236":[33,34,39,41,60],"\u5f37\u529b":171,"\u5f37\u5316":[35,37,41],"\u5f53\u3066":[50,116,124,129,181],"\u5f53\u8a72":[60,77],"\u5f62\u5f0f":[],"\u5f62\u614b":[0,28,161,183],"\u5f62\u72b6":166,"\u5f71\u97ff":[12,33,39,40,41,173],"\u5f79\u5272":[154,204],"\u5f79\u7acb\u3061":40,"\u5f85\u3061\u53d7\u3051\u308b":[195,208],"\u5f8c\u304b\u3089":94,"\u5f8c\u4e8c":[],"\u5f8c\u65b9":[],"\u5f8c\u65b9\u4e00\u81f4":[],"\u5f8c\u8005":[164,170,211],"\u5f8c\u8ff0":[11,12,64,119,157,171,175],"\u5f93\u3046":35,"\u5f93\u3063":[62,63,64,119,138,189],"\u5f93\u6765":41,"\u5f97\u3089\u308c":[128,151],"\u5f97\u308b":[137,167],"\u5fa9\u53f7":12,"\u5fa9\u65e7":[33,38,51,133],"\u5fc3\u304c":14,"\u5fc3\u914d":23,"\u5fc5\u305a":[63,71,77,103,119,123,153,171,172,195],"\u5fc5\u8981":[],"\u5fc5\u9808":[],"\u5fd8\u308c":[37,75,153],"\u5fdc\u3058":[0,58,136,171],"\u5fdc\u7528":0,"\u5fdc\u7b54":[0,40],"\u601d\u3044":17,"\u601d\u3044\u51fa\u3057":119,"\u601d\u3046":[171,202,206],"\u601d\u3063":16,"\u6027\u5225":0,"\u6027\u80fd":[],"\u6069\u6075":193,"\u60aa\u610f":161,"\u60c5\u5831\u540d":124,"\u60f3\u5b9a":[83,94,203],"\u610f\u5473":[11,28,33,40,53,75,87,95,97,115,116,119,121,122,135,136,160,161,167,170,171,174,183,184,202,204,211],"\u610f\u56f3":[33,39,40,41,154,157,160,173,206],"\u610f\u8b58":123,"\u611f\u3058":10,"\u614e\u91cd":14,"\u6163\u308c":202,"\u6163\u7fd2":39,"\u6210\u308a":[119,160,195],"\u6210\u308a\u7acb\u3063":11,"\u6210\u529f":[],"\u6210\u679c":[],"\u623b\u3057":90,"\u623b\u3063":137,"\u623b\u308a":[39,60],"\u623b\u308a\u5024":[],"\u6240\u5b9a":[123,182,196,198],"\u6240\u5c5e":89,"\u6240\u6709":33,"\u624b\u52d5":137,"\u624b\u6bb5":[11,53],"\u624b\u7d9a\u304d":[55,61],"\u624b\u9593":10,"\u624b\u9806":[],"\u6253\u3061":101,"\u6253\u3061\u5207\u308a":40,"\u6253\u3063":12,"\u6253\u3064":12,"\u6253\u3064\u524d":12,"\u6271\u3044":[41,77,177,183,196,201],"\u6271\u3046":[0,2,38,40,81,101,103,106,161,184,198,199],"\u6271\u3048":[50,205],"\u6271\u3048\u308b":[40,41,199],"\u6271\u3063":[34,40,207],"\u6271\u308f":[33,39,40,41,50,119,129,136,160,164,166,198,201],"\u627f\u8a8d":41,"\u628a\u63e1":[10,95],"\u6291\u3048":198,"\u6291\u5236":[39,40,41],"\u6295\u5165":[34,101,198],"\u6295\u7a3f\u5834\u6240":207,"\u629c\u304d\u51fa\u3059":0,"\u629c\u3051":[33,37,40,41],"\u629c\u3051\u308b":204,"\u62bc\u3057":204,"\u62bc\u3059":[17,204],"\u62bd\u51fa":[],"\u62c5\u5f53":12,"\u62c5\u5f53\u8005":12,"\u62e1\u5927":10,"\u62e1\u5f35":[],"\u62e1\u5f35\u578b":201,"\u62e1\u5f35\u5b50":[35,110,111,114,136,168],"\u62ec\u5f27":96,"\u6301\u3061":[11,71,87,119,129,135,137,171],"\u6301\u3063":[0,10,39,75,87,104,107,108,119,129,130,160,161,164,178],"\u6301\u3064":[0,9,37,63,73,87,96,104,108,119,130,145,157,161,164,166,178,201,202,203,204],"\u6301\u3064\u3059\u3079":119,"\u6301\u3066":[87,182],"\u6301\u3066\u308b":33,"\u6307\u3057":201,"\u6307\u3059\u5024":64,"\u6307\u5b9a":[],"\u6307\u6570":161,"\u6307\u6a19":60,"\u6307\u793a":[55,177,204,208],"\u6307\u91dd":[],"\u6319\u304c\u3063":183,"\u6319\u52d5":[],"\u632f\u821e":145,"\u632f\u821e\u3044":[39,40,41,143,154],"\u633f\u5165":[12,39,55,135,156,204],"\u6368\u3066":37,"\u639b\u3051":161,"\u63a1\u7528":[0,128,195,198],"\u63a2\u3057":[0,119,136,183],"\u63a2\u3059":[167,183,206],"\u63a2\u7d22":0,"\u63a5\u7d9a":[],"\u63a5\u7d9a\u5148":134,"\u63a5\u8fd1":11,"\u63a5\u982d":[37,161,181],"\u63a8\u5968":[23,33,39,41,77,78,119,184,208],"\u63a8\u5b9a":33,"\u63a8\u79fb":77,"\u63a8\u9032":40,"\u63d0\u4f9b":[],"\u63d0\u6848":[],"\u63d0\u6848\u7528":140,"\u63db\u3048":[33,60,64,171,210],"\u63db\u3048\u308b":[12,33,71],"\u63db\u6642":37,"\u63fa\u308c":210,"\u642d\u8f09":0,"\u643a\u5e2f":0,"\u64a4\u53bb":37,"\u64a4\u5ec3":[35,41,69,84,114,121,135],"\u64cd\u4f5c":[],"\u64ec\u4f3c":[],"\u652f\u63f4":179,"\u6539\u540d":[37,39],"\u6539\u5584":[33,34,37,39,40,41],"\u6539\u884c":[33,37,38,135],"\u6570\u3048":[121,202],"\u6570\u3048\u308b":[119,202],"\u6570\u5024":[],"\u6570\u5b57":[41,104,119,123,136,171,178,183,198],"\u6570\u70b9":[119,185],"\u6570\u73e0":157,"\u6574\u3063":14,"\u6574\u5217":[0,204],"\u6574\u5408":[34,60],"\u6574\u5f62":[33,79,204],"\u6574\u6570":[],"\u6574\u7406":[39,40],"\u6587\u5b57":[],"\u6587\u5b57\u5217":[],"\u6587\u5b57\u6570":[156,161],"\u6587\u5b57\u7a2e":171,"\u6587\u66f8":[],"\u6587\u66f8\u4e2d":[172,173],"\u6587\u66f8\u5185":182,"\u6587\u6cd5":[],"\u6587\u8108":157,"\u65ad\u7247":156,"\u65b0\u3057\u3044":[],"\u65b0\u3057\u304f":[10,41,77,102,119,123,159,162,204],"\u65b0\u305f":[11,47,51,55,63],"\u65b0\u5bbf":211,"\u65b0\u5bbf\u99c5":211,"\u65b0\u65e7":33,"\u65b0\u8a9e":183,"\u65b9\u5411":64,"\u65b9\u5f0f":[0,204,206],"\u65b9\u5f62":[145,146],"\u65b9\u6cd5":[],"\u65e2\u5b58":[0,1,12,33,39,41,51,63,100,103,119,133,136,175,193,195,201,204],"\u65e2\u5b9a":39,"\u65e2\u5b9a\u5024":193,"\u65e2\u77e5":101,"\u65e5\u3005":10,"\u65e5\u3054\u3068":101,"\u65e5\u4ed8":[0,12,145],"\u65e5\u6642":[],"\u65e5\u672c":[12,41,146,147,153,160,161,167,177,183,185,211],"\u65e5\u672c\u4eba":177,"\u65e5\u672c\u6e2c":145,"\u65e5\u672c\u8a9e":[0,2,17,19,39,160,161,167,177,183,198],"\u65e5\u6b21":33,"\u6607\u964d":64,"\u6607\u9806":[60,63,64,105,119,202,204,211],"\u660e\u78ba":41,"\u6642\u306b":37,"\u6642\u4ee3":0,"\u6642\u4ee5\u5916":35,"\u6642\u523b":[33,51,78,136,152,178,207],"\u6642\u671f":33,"\u6642\u70b9":[12,39,45,46,50,52,60,77],"\u6642\u9593":[],"\u666e\u53ca":0,"\u666e\u901a":[10,161],"\u6697\u53f7":12,"\u66f8\u3044":[33,41,160,161,171,207],"\u66f8\u304b":[33,39,175,207],"\u66f8\u304d":[],"\u66f8\u304d\u51fa\u3057":95,"\u66f8\u304d\u51fa\u3059":95,"\u66f8\u304d\u5f8c":196,"\u66f8\u304d\u63db\u3048":[12,21],"\u66f8\u304d\u8fbc\u307e":100,"\u66f8\u304d\u8fbc\u307f":[28,33,97],"\u66f8\u304d\u8fbc\u3080":[33,136],"\u66f8\u304d\u8fbc\u3081\u308b":41,"\u66f8\u304f":[41,160,171,206],"\u66f8\u3051\u308b":[33,39,40,41],"\u66f8\u5f0f":[],"\u66ff\u3048":[],"\u66ff\u3048\u308b":204,"\u66ff\u308f\u308b":33,"\u6700\u3082":[50,83,119],"\u6700\u4e2d":0,"\u6700\u521d":[10,33,37,41,50,78,116,119,123,140,143,148,149,156,160,161,170,171,172,183,193,201,204,206],"\u6700\u5927":[],"\u6700\u5927\u5024":[39,41,101,103,104,106,119,173],"\u6700\u5927\u7dcf":33,"\u6700\u5c0f":[24,25,26,30,33,119,143,193],"\u6700\u5c0f\u5024":[41,101,103,104,106,119,161],"\u6700\u5c0f\u9650":137,"\u6700\u5f8c":[12,33,35,39,50,129,136,137,161,171,183,198,201],"\u6700\u65b0":[2,6,7,8,12,33,37,82],"\u6700\u7d42":[51,75,119],"\u6700\u7d42\u66f4":51,"\u6700\u9069":[33,137],"\u6700\u9577":[37,80,136,161],"\u6708\u6b21":33,"\u6709\u3057":87,"\u6709\u529b":122,"\u6709\u52b9":[0,6,7,8,12,24,28,30,33,37,38,40,41,47,51,60,63,86,87,96,104,119,123,129,136,137,156,158,160,171,175,201,208],"\u6709\u7121":[148,201],"\u6709\u7528":[33,41,78,87,137,181,189,204],"\u6709\u76ca":0,"\u671b\u307e\u3057\u3044":[0,10,12],"\u671f\u5316":[39,50],"\u671f\u5f85":[0,167,171,183,201],"\u6728\u4e0a":64,"\u672a\u4f7f":41,"\u672a\u4f7f\u7528":195,"\u672a\u521d":39,"\u672a\u5b9a":201,"\u672a\u5b9a\u7fa9":41,"\u672a\u5b9f\u88c5":104,"\u672a\u5bfe":39,"\u672a\u6e80":[64,160],"\u672a\u77e5":38,"\u672a\u8a2d":39,"\u672a\u958b\u653e":35,"\u672b\u5c3e":[55,60,64,101,171],"\u672b\u6c38":33,"\u672c\u4f53":3,"\u672c\u5f53":[177,210],"\u672c\u6587":[150,206],"\u672c\u756a":[12,33,103],"\u672c\u8a9e":183,"\u672c\u8cea":136,"\u6749\u672c":33,"\u6749\u672c\u6dbc":33,"\u6751\u4e0a":[33,40,41],"\u6761\u4ef6":[],"\u6761\u4ef6\u5f0f":[],"\u6771\u4eac":[145,183,196,198,211],"\u6771\u4eac\u90fd":[183,196,198],"\u6790\u5668":[0,183],"\u6790\u7cfb":161,"\u679c\u305f":204,"\u67af\u308c":[1,193],"\u67d4\u8edf":[0,154,159],"\u6817\u5c71":[33,41],"\u682a\u5f0f":[33,41],"\u683c\u7d0d":[],"\u6848\u5185":[10,12,33],"\u68ee\u7530":203,"\u691c\u51fa":[],"\u691c\u67fb":60,"\u691c\u7d22\u4f8b":[],"\u691c\u7d22id":63,"\u691c\u7d22key":63,"\u691c\u8a0e":[172,173,174,193,198],"\u691c\u8a3c":[41,134],"\u6955\u5186":[145,146],"\u6975\u4ed8":[145,146],"\u697d\u3057":[196,198],"\u697d\u3057\u3044":[196,198],"\u6982\u5ff5":77,"\u69cb\u3044":[17,149,156],"\u69cb\u6210":[11,12,24,25,26,30,41,193,204],"\u69cb\u6587":[],"\u69cb\u7bc9":[],"\u69cb\u9020":[0,11,50,63,78,181,203],"\u69cb\u9020\u4f53":[41,50,57,61],"\u69d8\u3005":[],"\u6a19\u6e96":[33,34,38,41,77,83,84,86,88,91,92,94,96,98,99,100,112,120,124,134,135,137,138,172,195,204],"\u6a19\u8a18":41,"\u6a29\u8868":41,"\u6a29\u9650":[28,33,40,208],"\u6a2a\u5c71":[40,41],"\u6a5f\u68b0":41,"\u6a5f\u80fd":[],"\u6b20\u70b9":0,"\u6b20\u843d":40,"\u6b21\u56de":[12,77],"\u6b21\u671f":12,"\u6b21\u90ce":203,"\u6b32\u3057\u3044":175,"\u6b53\u8fce":3,"\u6b62\u3081":[33,41,65],"\u6b63\u3057\u3044":[33,160,170,178,179],"\u6b63\u3057\u304f":[33,39,40,41,160,177],"\u6b63\u5e38":[12,33,104,136],"\u6b63\u5f0f":41,"\u6b63\u78ba":[102,201,204],"\u6b63\u898f":[],"\u6b63\u898f\u5316":[39,107,156],"\u6b66\u8005":33,"\u6b8a\u547d":136,"\u6b8b\u3063":[35,40,125],"\u6b8b\u308a":[77,119,123,127,170],"\u6b8b\u308b":37,"\u6b8b\u5ff5":201,"\u6bb5\u843d":[47,86,87],"\u6bb5\u968e":184,"\u6bd4\u3079":[41,162],"\u6bd4\u8f03":[],"\u6c17\u306b":[17,60,87,101],"\u6c17\u8efd":[10,41],"\u6c38\u7d9a":[],"\u6c42\u307e\u308a":0,"\u6c42\u3081":[0,144],"\u6c42\u3081\u308b":[0,145,146,202],"\u6c4e\u7528":[135,136,137],"\u6c7a\u307e\u308a":170,"\u6c7a\u307e\u308b":204,"\u6c7a\u3081":[85,101,119,123],"\u6c7a\u3081\u308b":[11,119],"\u6c7a\u5b9a":119,"\u6cbf\u3046":41,"\u6ce8\u610f":[12,37,40,63,75,95,116,119,123,136,137,150,158,160,161,184,189,198,201,202,204,209],"\u6ce8\u76ee":[119,202],"\u6ce8\u8a18":40,"\u6d0b\u5fd7":41,"\u6d0b\u723e":37,"\u6d3b\u304b\u3059":119,"\u6d3b\u7528":[33,193],"\u6d41\u3057":12,"\u6d41\u308c":[],"\u6d41\u91cf":189,"\u6d45\u898b":40,"\u6d69\u4e8c":39,"\u6d6e\u52d5":[],"\u6d88\u3048":181,"\u6d88\u305b":137,"\u6d88\u53bb":40,"\u6d88\u8cbb":162,"\u6df1\u523b":[39,41,198],"\u6df7\u3056\u3063":183,"\u6df7\u305c":[122,201],"\u6df7\u305c\u308b":75,"\u6df7\u5728":[33,138],"\u6dfb\u4ed8":39,"\u6e08\u307f":[10,12,24,25,26,30,33,37,39,40,47,86,96,105,129,170,177,178,179,185,193],"\u6e08\u3080":33,"\u6e1b\u3063":33,"\u6e1b\u3089":[33,39,65,178,181,210],"\u6e1b\u308b":167,"\u6e1b\u5c11\u5f8c":65,"\u6e1b\u7b97":[],"\u6e21\u3055":[11,39,40,61,65,145],"\u6e21\u3057":[6,7,8,11,33,41,96,116,128,133,160,204,208],"\u6e21\u3059":[33,38,161,204],"\u6e2c\u4f4d":0,"\u6e2c\u5730":[145,146,147,185,201,211],"\u6e2c\u5730\u7cfb":185,"\u6e2c\u5b9a":136,"\u6e2c\u7528":34,"\u6e80\u3055":40,"\u6e80\u3059":[33,40],"\u6e80\u305f":[11,125,157,171,211],"\u6e96\u5099":[],"\u6e96\u62e0":[40,137],"\u6f0f\u308c":[0,12,39,159,210],"\u6f14\u7b97":[28,33,35,39,40,41,63,159,161],"\u6f14\u7b97\u5b50":[],"\u6f22\u5b57":[153,167,183],"\u6fc1\u70b9":164,"\u7027\u5185":40,"\u70b9\u4ee5\u4e0b":201,"\u70b9\u6570":[],"\u70b9\u9593":[145,166],"\u7121\u3057":[95,102,171],"\u7121\u52b9":[6,7,8,28,33,38,39,40,52,63,64,119,135,137,160,177],"\u7121\u540d":[60,63],"\u7121\u8996":[33,35,37,39,40,41,63,64,93,94,107,116,119,129,135,153,160,170,181,183,198],"\u7121\u9650":[33,35,39,41],"\u7121\u99c4":0,"\u7279\u306b":[11,12],"\u7279\u5225":[28,45,53,81,119,129,160,171,177],"\u7279\u5316":[17,161],"\u7279\u5b9a":[],"\u7279\u6027":181,"\u7279\u6709":[],"\u7279\u6b8a":[],"\u72b6\u614b":[0,10,12,24,25,26,30,33,35,39,41,50,83,134,135,177,198,204],"\u72b6\u6cc1":[0,55,119,161,198],"\u72ec\u7acb":102,"\u72ec\u81ea":[],"\u72ed\u3081\u308b":95,"\u7372\u5f97":[33,97],"\u7389\u91ce":41,"\u73fe\u308c":129,"\u73fe\u308c\u308b":198,"\u73fe\u4ee3":0,"\u73fe\u5728":[0,12,33,46,50,51,57,60,61,82,85,89,100,102,121,123,125,126,134,136,152,166,204,205,207],"\u73fe\u5728\u5730":207,"\u73fe\u5b9f":202,"\u73fe\u72b6":77,"\u73fe\u983b":41,"\u7403\u9762":[145,146],"\u7406\u7531":[],"\u7406\u89e3":[119,204],"\u7406\u95a2":61,"\u74b0\u5883":[],"\u751f\u3058":[84,88,91,98,99,100],"\u751f\u6210":[],"\u7528\u3044":[],"\u7528\u3044\u308b":[0,60,195,201,203,204,205,211],"\u7528\u5909":41,"\u7528\u610f":[11,12,28,60,119,136,145,177,178,179,180,183,184],"\u7528\u79d8":[],"\u7528\u8a9e\u96c6":[],"\u7528\u9014":[0,23,24,25,26,30,31,40,41,75,78,119,171,175,181,193],"\u7530\u6cbc":41,"\u7530\u8fba":40,"\u7531\u6765":159,"\u753b\u9762":[12,34,41],"\u7551\u30b1":[33,41],"\u7551\u30f6":41,"\u756a\u53f7":[12,40,41,47,73,134,135,136,171,189,193,195,208],"\u756a\u76ee":[40,63,64,87,103,107,119,129,160,161,171,172,201,204],"\u7570\u306a\u3063":[33,64],"\u7570\u306a\u308a":[41,160],"\u7570\u306a\u308b":[],"\u7570\u5e38":[83,136],"\u7591\u4f3c":[39,40,41,73,96,155],"\u7591\u554f":206,"\u767a\u63ee":0,"\u767a\u751f":[0,12,28,33,34,39,40,41,50,60,63,78,86,123,198],"\u767a\u884c":195,"\u767b\u9332":[],"\u7686\u5ddd":41,"\u76ee\u304f\u3089\u3044":123,"\u76ee\u4ee5\u964d":119,"\u76ee\u5b89":12,"\u76ee\u7684":[28,40,101,129],"\u76ee\u8996":78,"\u76f4\u3057":[33,184],"\u76f4\u3059":115,"\u76f4\u4e0b":37,"\u76f4\u524d":55,"\u76f4\u5f8c":50,"\u76f4\u611f":209,"\u76f4\u63a5":[94,207],"\u76f8\u5bfe":[12,37,119],"\u76f8\u5bfe\u30d1\u30b9":41,"\u76f8\u5f53":[78,202,204,211],"\u76f8\u5fdc":63,"\u76f8\u624b":10,"\u7701\u7565":[],"\u771f\u306a\u3089":161,"\u771f\u507d":[33,40,160,161,185,201],"\u771f\u507d\u5024":[],"\u77e5\u3089":183,"\u77e5\u308b":202,"\u77e5\u8b58":136,"\u77e9\u5f62":[0,147,211],"\u77ed\u3044":[33,35,207],"\u77ed\u304f":[0,162],"\u77ed\u6642\u9593":0,"\u77ed\u7e2e":[6,7,33],"\u7834\u58ca":63,"\u7834\u68c4":[50,61],"\u78ba\u4fdd":[50,53,58,199],"\u78ba\u5b9a":122,"\u78ba\u5b9f":178,"\u78ba\u7387":122,"\u78ba\u8a8d":[],"\u78ef\u90e8":40,"\u793a\u3055":124,"\u793a\u3057":[12,44,81,85,101,107,145,151,166,172,183,192,195,198,202,204,206,208],"\u793a\u3059":[78,81,93,96,104,119,124,143,145,146,147,148,149,150,151,153,154,156,157,158,160,161,172,173,174,189,201,209],"\u79cb\u8449":211,"\u79d2\u3088\u308a":36,"\u79d2\u5358":[185,201],"\u79d2\u5f62":185,"\u79d2\u60c5":37,"\u79d2\u6570":[78,161,185,201,207],"\u79d2\u8868":[161,198,201,211],"\u79d2\u9593":37,"\u79d8\u5bc6":12,"\u79fb\u52d5":[12,16,31,37,39,85,100],"\u79fb\u884c":[37,77],"\u7a0b\u5ea6":[37,40,204],"\u7a2e\u5225":107,"\u7a2e\u985e":[],"\u7a32\u7530":40,"\u7a4d\u307f\u91cd\u306a\u3063":40,"\u7a4d\u7528":119,"\u7a4d\u7b97":[11,119],"\u7a7a\u304d":[83,199],"\u7a7a\u6587":[41,160,185],"\u7a7a\u767d":[0,33,96,107,129,135,160,180,183,198,204],"\u7a81\u7136":40,"\u7acb\u3061":78,"\u7acb\u3061\u4e0a\u304c\u3063":136,"\u7acb\u3061\u4e0a\u3052":136,"\u7acb\u3064":171,"\u7acb\u3064\u304b":183,"\u7acb\u5834":3,"\u7aef\u672b":0,"\u7b26\u53f7":[],"\u7b2c\u4e00":[],"\u7b2c\u4e8c":[],"\u7b49\u3057\u3044":[11,60,119,160,161],"\u7b49\u3057\u304f":[11,160,161],"\u7b49\u4fa1":[],"\u7b49\u5024":35,"\u7b87\u6240":[12,40,78,156],"\u7b97\u51fa":[39,41],"\u7b97\u8853":[],"\u7ba1\u7406":[],"\u7bc4\u56f2":[],"\u7bc4\u56f2\u5916":41,"\u7be0\u7530":[33,41],"\u7c21\u5358":[],"\u7c21\u6613":[41,145,193],"\u7c21\u7565":[40,151],"\u7cbe\u5ea6":33,"\u7cfb\u5ea7":[146,147],"\u7d00\u5143":33,"\u7d14\u7c8b":183,"\u7d1b\u3089\u308f\u3057\u3044":171,"\u7d20\u65b9":0,"\u7d20\u6734":202,"\u7d20\u89e3":[0,28,161,183],"\u7d22\u6642":35,"\u7d22\u7528":[],"\u7d30\u5206":201,"\u7d39\u4ecb":[3,12,41,104,119,207],"\u7d42\u3048":12,"\u7d42\u308f\u3063":[33,68],"\u7d42\u308f\u308b":[160,161,162],"\u7d42\u4e86":[],"\u7d42\u4e86\u30bf\u30b0":148,"\u7d42\u7aef":[39,50,51,53],"\u7d44\u307f\u5408\u308f":[0,11,119,123,143,153],"\u7d44\u307f\u5408\u308f\u305b":[0,11,12,41,86,183,198,204],"\u7d44\u307f\u5408\u308f\u305b\u308b":153,"\u7d44\u307f\u8fbc\u307f":[],"\u7d44\u307f\u8fbc\u3080":[0,11,137],"\u7d44\u307f\u8fbc\u3093":[0,33,41],"\u7d44\u5408":154,"\u7d44\u8fbc":[83,84,86,88,91,92,94,98,99,100,112,120,124,144,146,147,152,155,185],"\u7d44\u8fbc\u578b":[],"\u7d4c\u7531":[12,35,39,41,83,84,86,88,91,92,94,98,99,100,112,120,124,136],"\u7d4c\u7def":[185,201,211],"\u7d4c\u7def\u5ea6":[],"\u7d4c\u904e":[37,45,60,77,78,121,161,185,201,207],"\u7d50\u3073\u3064\u3044":9,"\u7d50\u3073\u3064\u304f":9,"\u7d50\u5408":[11,159,160],"\u7d50\u5408\u5f0f":[],"\u7d50\u57ce":41,"\u7d50\u679c":[],"\u7d5e\u308a\u8fbc\u307f":[0,204],"\u7d5e\u308a\u8fbc\u3080":[41,119,179],"\u7d5e\u308a\u8fbc\u3093":[0,40],"\u7d5e\u8fbc":[],"\u7d71\u5408":[0,39,40],"\u7d76\u5bfe":[110,111,114],"\u7d99\u627f":40,"\u7d99\u7d9a":[21,39,121,135],"\u7d9a\u3044":198,"\u7d9a\u304d":96,"\u7d9a\u3051":136,"\u7d9a\u3051\u308b":183,"\u7dad\u6301":[0,173,174,189],"\u7db2\u7f85":137,"\u7dcf\u91cf":184,"\u7de8\u96c6":[],"\u7de9\u3084\u304b":33,"\u7de9\u548c":184,"\u7e26\u68d2":123,"\u7e4b\u3052":41,"\u7e4b\u3052\u308b":10,"\u7e70\u308a\u8fd4\u3057":[17,136,161],"\u7e70\u308a\u8fd4\u3057\u6570":136,"\u7e70\u308a\u8fd4\u3059":35,"\u7f6e\u3044":[12,41],"\u7f6e\u304b":[28,137,138,170],"\u7f6e\u304d":[12,33,35,60,64,171,210],"\u7f6e\u304d\u63db\u3048":[17,41,135,160,175],"\u7f6e\u304f":[28,33,184],"\u7f6e\u304f\u4f8b":28,"\u7f6e\u63db":[],"\u7f72\u540d":[],"\u7fa9\u8a9e":170,"\u7ffb\u8a33":[],"\u8003\u3048":[0,10,119,125,160,161,184,189,202,204],"\u8003\u3048\u308b":[172,173,174],"\u8003\u3048\u65b9":41,"\u8003\u616e":[174,198,210],"\u80a5\u5927":41,"\u811a\u6ce8":[88,145,146,147,204],"\u81a8\u5927":0,"\u81ea\u4f53":[41,160],"\u81ea\u5206":[10,17,23,101,136,137,167],"\u81ea\u52d5":[12,17,33,37,39,41,47,63,73,95,110,111,114,133,136,137,160,161,181,203,204,209],"\u81ea\u52d5\u5207\u308a":41,"\u81ea\u52d5\u7684":136,"\u81ea\u5df1":207,"\u81ea\u5df1\u7d39":207,"\u81ea\u7531":[0,11,73,195],"\u81ea\u8eab":[33,37,39,129,135,170],"\u81f3\u308b":201,"\u81f4\u547d":39,"\u8208\u5473":[0,33,171],"\u826f\u3044":[10,206],"\u826f\u3044\u4f8b":10,"\u826f\u304f":[33,206],"\u826f\u4e8c":41,"\u82b1\u5b50":203,"\u82e6\u624b":0,"\u82f1\u8a9e":[2,12,17,19,37,41,183],"\u840e\u7e2e":10,"\u843d\u3061":[35,40],"\u843d\u3061\u308b":[35,37,40],"\u8457\u4f5c":41,"\u884c\u3044":[11,12,33,60,63,64,134,135,136,154,196,198,203,204,206,207],"\u884c\u3046":[10,12,14,35,39,41,64,123,134,145,154,182,193,196,203,206,207,209,211],"\u884c\u3048":[14,41,154,160,204],"\u884c\u3048\u308b":[39,203],"\u884c\u3063":[12,14,41,202,211],"\u884c\u306a\u308f":39,"\u884c\u308f":[119,134,136,203],"\u884c\u6307\u5411":0,"\u884c\u6570":37,"\u884c\u672b":171,"\u884c\u756a":[37,78],"\u884c\u76ee":[12,78,136],"\u884c\u982d":171,"\u8868\u3057":[11,73,77,78,81,119,166,171,174,185,204],"\u8868\u3059":[11,86,129,145,155,166,171,201,203],"\u8868\u3059\u578b":185,"\u8868\u308f":60,"\u8868\u73fe":[],"\u8868\u793a":[],"\u8868\u8a08":170,"\u8868\u8a18":[12,17,37,39,40,75,145,161,185,201,210,211],"\u88d5\u4e5f":41,"\u88dc\u3046":0,"\u88dc\u5b8c":[],"\u88dc\u5b8c\u8a9e":177,"\u88dc\u6b63":[],"\u88dc\u8db3":137,"\u8907\u6570":[],"\u8907\u96d1":[11,33,39,40,119,161,171],"\u897f\u66a6":161,"\u8981\u6c42":[10,40,157,204],"\u8981\u7d20":[11,33,39,40,63,75,78,81,87,96,136,156,204],"\u898b\u3048\u308b":[6,7],"\u898b\u305b":175,"\u898b\u3064":[33,35,39,122],"\u898b\u3064\u304b\u3063":[119,179,183],"\u898b\u3064\u304b\u3089":63,"\u898b\u3064\u304b\u308a":[119,153,183],"\u898b\u3064\u304b\u308b":39,"\u898b\u3064\u304b\u308c":10,"\u898b\u3064\u3051":[10,34,39,119,177,183],"\u898b\u3064\u3051\u308b":[89,119,126,137,153,164,167,183],"\u898b\u3066":[78,85,104,119,137,177],"\u898b\u306a\u3057":64,"\u898b\u308b":[81,85,119],"\u898b\u4ed8":40,"\u898b\u4ed8\u3051":40,"\u898b\u76f4\u3057":41,"\u898b\u7a4d":33,"\u898b\u7a4d\u308b":199,"\u898b\u8fbc\u3081":41,"\u898f\u5247":[39,104],"\u898f\u683c":64,"\u8996\u899a":0,"\u89a7\u4e0b":14,"\u89aa\u5207":35,"\u89b3\u70b9":[41,151,161,199],"\u89e3\u50cf":35,"\u89e3\u653e":[33,41,46,50,57,60,64,68,90,97,121],"\u89e3\u6790":[],"\u89e3\u6c7a":[10,33,37,39,83,172,173,174,175,183,199],"\u89e3\u6c7a\u7b56":10,"\u89e3\u6d88":[33,34,40,60,75,92],"\u89e3\u91c8":[11,35,94,160],"\u89e3\u9664":[34,60,84,97,110,111,135],"\u89e6\u308b":33,"\u89e6\u308c":204,"\u89e6\u308c\u308b":183,"\u8a00\u3044":[33,71,157],"\u8a00\u3046":[75,102,174,177],"\u8a00\u3048":[160,198],"\u8a00\u53ca":[157,207],"\u8a00\u8a9e":[],"\u8a00\u8a9e\u540d":17,"\u8a02\u6b63":170,"\u8a08\u6e2c":[14,34,37],"\u8a08\u7b97":[0,34,39,40,41,117,119,121,144,145,146,161,166,172,173,174,177,178,180,184,185,211],"\u8a18\u4e8b":[12,162,206],"\u8a18\u53f7":[35,135,183,196,198,204],"\u8a18\u6cd5":[161,206],"\u8a18\u8f09":[12,39],"\u8a18\u8ff0":[11,33,135,136,204,206,207],"\u8a18\u9332":[0,33,39,73,110,114],"\u8a2d\u5b9a":[],"\u8a2d\u5b9a\u5024":[34,199],"\u8a2d\u5b9a\u6e08\u307f":193,"\u8a2d\u6a02":37,"\u8a2d\u8a08":[119,193],"\u8a55\u4fa1":[11,33,40,117,157,160,161,171],"\u8a66\u3057":[10,33],"\u8a66\u3059":[6,7,183,188],"\u8a66\u3059\u4f8b":183,"\u8a66\u884c":0,"\u8a71\u3057":3,"\u8a71\u984c":2,"\u8a72\u5f53":[41,46,47,60,63,64,109,143,148,149,151,156,206],"\u8a73\u3057\u304f":[0,201,204],"\u8a73\u7d30":[1,14,17,24,25,26,28,30,33,39,40,41,46,59,62,75,78,80,85,87,90,95,104,110,111,114,119,121,123,125,126,127,129,133,136,137,138,154,160,161,167,170,171,184,185,193,198,202,204,211],"\u8a8d\u8a3c":[],"\u8a8d\u8b58":10,"\u8a9e\u4ee5":[161,183],"\u8a9e\u5165":167,"\u8a9e\u53e5":[33,40,203],"\u8a9e\u5f59":[],"\u8a9e\u6271":196,"\u8a9e\u691c":119,"\u8a9e\u7248":12,"\u8a9e\u7528":183,"\u8aa4\u3063":[12,33,39,40,41],"\u8aa4\u308a":[33,39,40,41],"\u8aa4\u52d5\u4f5c":33,"\u8aa4\u5b57":[33,35,37,39,40,170],"\u8aa4\u5dee":[37,145,146],"\u8aac\u660e":[],"\u8aad\u307f":[],"\u8aad\u307f\u3084\u3059\u3044":38,"\u8aad\u307f\u51fa\u3057":0,"\u8aad\u307f\u53d6\u308a":[89,96,126,135],"\u8aad\u307f\u8fbc\u307f":[37,40,41,110,114,118,170,204],"\u8aad\u307f\u8fbc\u3080":[34,118],"\u8aad\u307f\u8fbc\u3081\u308b":94,"\u8aad\u307f\u8fbc\u3093":[118,195],"\u8aad\u307f\u98db\u3070":204,"\u8aad\u3081":39,"\u8aad\u3093":[3,21],"\u8ab0\u304b":3,"\u8ab0\u304c":207,"\u8ab0\u3067":41,"\u8ab2\u7a0b":40,"\u8ab2\u984c":[],"\u8abf\u3079":[55,60,146,147,202],"\u8abf\u3079\u308b":[40,146,147,199],"\u8abf\u6574":[119,159,183,198,199],"\u8abf\u67fb":33,"\u8ad6\u7406":[],"\u8ad6\u7406\u548c":[],"\u8af8\u6761":32,"\u8b66\u544a":[6,7,35,38,39,40,41,77,119],"\u8b70\u8ad6":19,"\u8ca0\u62c5":10,"\u8ca0\u6570":[39,45],"\u8ca0\u8377":[35,137],"\u8ca2\u732e":40,"\u8ce2\u304f":90,"\u8d64\u9053":145,"\u8d70\u67fb":41,"\u8d77\u3053\u3063":[89,126],"\u8d77\u3053\u308a":210,"\u8d77\u52d5":[],"\u8d77\u6e90":201,"\u8d85\u3048":[40,198],"\u8d85\u3048\u308b":[39,64,181,199,201],"\u8d85\u904e":[40,199],"\u8d8a\u3048":[33,41,198],"\u8d8a\u3048\u308b":[33,41,101,198],"\u8db3\u3057":161,"\u8db3\u308a":[37,170],"\u8ddd\u96e2":[0,34,39,144,145,146,161,166,211],"\u8efd\u3044":[89,109,126],"\u8f09\u305b\u308b":12,"\u8f9e\u66f8":[26,33,34,35,39,40,41,183,198],"\u8f9e\u691c":[37,161,181],"\u8fbc\u307f":[100,170],"\u8fd1\u3044":[64,134,175],"\u8fd1\u3044\u9806":166,"\u8fd1\u304f":[0,161,166],"\u8fd1\u3055":161,"\u8fd1\u4f3c":[37,39,145,146],"\u8fd1\u508d":[],"\u8fd4\u3055":[39,41,52,60,77,83,96,122],"\u8fd4\u3057":[11,33,40,41,45,46,47,48,50,51,52,55,57,59,60,63,64,65,67,69,82,86,87,89,93,97,102,105,108,109,115,116,117,118,119,121,122,127,128,129,130,131,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,161,173,174,177,178,179,180,189,204,207,210,211],"\u8fd4\u3059":[33,34,35,37,39,40,41,47,50,53,65,84,88,90,91,92,98,99,100,103,119,122,128,135,136,143,152,161,189,195,211],"\u8fd4\u3059\u304b":122,"\u8fd4\u3059\u4f8b":158,"\u8fd4\u3059\u65b0\u3057\u3044":33,"\u8fd4\u3063":[33,41,128,160,161],"\u8fd4\u308a":[104,119,128,202,211],"\u8fd4\u308a\u5024":[33,40,41],"\u8fd4\u308b":[33,35],"\u8fd4\u4fe1":[10,206,207],"\u8fd4\u4fe1\u5143":207,"\u8fd4\u4fe1\u5148":207,"\u8fd4\u5024":[],"\u8fd4\u5374":[124,204],"\u8ff0\u3079":204,"\u8ff0\u8a9e":33,"\u8ffd\u52a0":[],"\u8ffd\u8a18":[12,33,39],"\u8ffd\u8de1":[],"\u9000\u907f":90,"\u9001\u3063":[3,16,17,19],"\u9001\u308a":[12,195],"\u9001\u308a\u65b9":[],"\u9001\u308b":[17,19,189,195],"\u9001\u4fe1":[],"\u9006\u306b":[203,207],"\u9006\u5f15":203,"\u9006\u5f15\u304d":[],"\u9006\u6587\u66f8\u51fa":41,"\u9006\u9806":204,"\u9010\u6b21":[0,41,171,183],"\u9014\u4e2d":[12,39,41,135,177,178,195],"\u901a\u308a":[6,7,8,12,21,28,30,49,85,87,93,94,101,102,103,104,105,107,119,122,123,124,129,133,137,143,145,146,148,149,150,151,153,154,156,157,158,160,161,166,167,171,172,173,174,180,183,184,198,206],"\u901a\u4fe1":[],"\u901a\u5e38":[33,39,41,50,65,73,78,87,90,95,102,119,121,129,137,160,164,167,170,184,185,201,204],"\u901a\u77e5":[12,116],"\u901f\u3044":[33,41,181],"\u901f\u304f":[28,33,123,203],"\u901f\u3084\u304b":77,"\u901f\u5ea6":[33,37,40,136,181,203],"\u9023\u643a":0,"\u9023\u7d50":[33,39,40,60,206],"\u9023\u7d61":17,"\u9023\u7d9a":[33,40,60,129,178,183,196,198],"\u9032\u3081":[],"\u9032\u3093":0,"\u9032\u6570":[83,161],"\u9045\u3044":[145,172,181],"\u9045\u304f":[33,146,160,161,171,174,202],"\u904b\u7528":0,"\u904e\u7a0b":73,"\u9054\u3057":184,"\u9054\u3059\u308b":64,"\u9054\u6210":101,"\u9055\u3046":[35,104],"\u9055\u3063":177,"\u9069\u3057":[0,123,162,172,173],"\u9069\u5207":[0,33,35,41,101,104,119,123,129,136,171,174,183,204],"\u9069\u5408":[183,198,204],"\u9069\u5408\u7387":183,"\u9069\u5b9c":[12,41],"\u9069\u6642":55,"\u9069\u7528":[],"\u9078\u3073":179,"\u9078\u3076":[0,119,137],"\u9078\u3079":[5,119],"\u9078\u3093":[79,123],"\u9078\u629e":[],"\u907f\u3051\u308b":119,"\u90e8\u5206":[],"\u90fd\u6c11":[196,198],"\u914d\u4e0b":[12,138],"\u914d\u5217":[],"\u914d\u5e03":[23,24,25,26,30,31,39,41],"\u914d\u7f6e":[12,204],"\u91cd\u3044":[0,95,119],"\u91cd\u304f":198,"\u91cd\u306a\u3063":40,"\u91cd\u307f":[],"\u91cd\u307f\u3064\u304d":41,"\u91cd\u307f\u4ed8\u304d":[],"\u91cd\u307f\u4ed8\u3051":[119,198],"\u91cd\u8907":[33,41,63],"\u91cd\u8981":[0,10,12,14,28,33,46,50,75,76,119,123,129,137,162,172,173,174,183,189,205],"\u91cd\u8996":[162,198],"\u91ce\u9996":41,"\u91cf\u6307":171,"\u91cf\u8a08":34,"\u9234\u6728":39,"\u932f\u8aa4":0,"\u9577\u3044":33,"\u9577\u3055":[39,47,60,63,64,66,136,201],"\u9577\u3059\u304e\u308b":40,"\u9577\u4ee5\u4e0a":[60,63],"\u9577\u5185":[33,41],"\u9577\u5185\u6b69":[33,41],"\u9577\u578b":[64,87],"\u9577\u65b9\u5f62":37,"\u9577\u6642\u9593":[116,133],"\u9577\u751f\u304d":123,"\u9577\u91ce":41,"\u9589\u3058":[37,125,181],"\u9589\u3058\u308b":[33,34,37,181],"\u958b\u3044":[33,35,37,40,84,92,125,133,164],"\u958b\u304b":[33,50,133],"\u958b\u304d":[46,51,115,125,184],"\u958b\u304f":[33,37,39,46,164,184,204],"\u958b\u304f\u969b":39,"\u958b\u3051":[33,39],"\u958b\u3051\u308b":[],"\u958b\u3053":51,"\u958b\u59cb":[14,37,40,41,60,89,126,136,145,148],"\u958b\u653e":33,"\u958b\u767a":[],"\u9593\u9055\u3063":[33,37,39,40,41,133,178,179],"\u95a2\u308f\u3089":[119,136],"\u95a2\u4fc2":[],"\u95a2\u4fc2\u5f0f":[],"\u95a2\u6570":[],"\u95a2\u9023":[],"\u95b2\u89a7":208,"\u95be\u5024":[],"\u9632\u304e":[40,125],"\u9632\u3050":[161,174],"\u964d\u9806":[63,64,119,122,204],"\u9650\u3063":60,"\u9650\u3089":10,"\u9650\u308a":[11,60,73,96,128,196,198],"\u9650\u5b9a":171,"\u9650\u6587":[37,123],"\u9664\u3044":[101,103,106,136,151,156],"\u9664\u304f":39,"\u9664\u3051":63,"\u9664\u53bb":[35,40,127,150,182],"\u9664\u5916":94,"\u9664\u7b97":[],"\u9665\u3063":39,"\u968e\u5c64":11,"\u96a3\u308a\u5408\u3063":183,"\u96a3\u63a5":[0,160],"\u96c5\u5e83":41,"\u96c6\u307e\u3063":202,"\u96c6\u307e\u308a":119,"\u96c6\u3081":202,"\u96c6\u5408":[39,63,71,75,119,159,171],"\u96e2\u308c":211,"\u96e3\u3057\u3044":0,"\u9759\u7684":[],"\u975e\u308f":196,"\u975e\u4e92":[33,39,40,41],"\u975e\u4e92\u63db":[33,37,41],"\u975e\u4f9d":24,"\u975e\u516c\u958b":12,"\u975e\u5206":119,"\u975e\u5e38":[39,171,172,173,174,189],"\u975e\u63a8":[33,37,39,40,41,123,145],"\u975e\u63a8\u5968":[33,39],"\u975eascii":183,"\u9805\u76ee":[34,83,119,123,189,193,205],"\u9806\u4f4d":55,"\u9806\u5e8f":[119,124,198,204],"\u9806\u6b21":[134,135,195,204],"\u9806\u756a":[57,64,135,160,198,204],"\u9818\u57df":[28,39,41,60,63,211],"\u982d\u6587":195,"\u982d\u8f9e":181,"\u983b\u51fa":33,"\u983b\u5ea6":[33,122],"\u983b\u7e41":[28,63],"\u9855\u8457":183,"\u985e\u4f3c":[],"\u985e\u7d39":198,"\u985e\u7fa9":119,"\u99c4\u76ee":10,"\u9ad8\u3044":[0,83,119,122,137,183,204],"\u9ad8\u3044\u9806":204,"\u9ad8\u304f":[33,75,173,198],"\u9ad8\u307e\u3063":0,"\u9ad8\u6a5f":[0,11],"\u9ad8\u7cbe":0,"\u9ad8\u901f":[0,11,34,37,40,71,103,119,123,145,146,160,161,166,171,172,174,181,183,188,189,203,204],"\u9b3c\u96f2":33,"\u9bae\u5ea6":162,"\u9df2\u7530":40,"\u9df2\u7530\u57fa":40,"\u9ed2\u3044\u70b9":166,"\uff01:":28,"\uff01\u300d":[104,119,160,161],"\uff01\u3057":2,"\uff01\uff08":17,"\uff01\uff09":[177,178],"\uff08*":5,"\uff08,":204,"\uff08-":[119,204],"\uff08.":12,"\uff08=":[119,121],"\uff08@":[35,37],"\uff08\u300c":[164,198],"\uff08\u3064\u307e\u308a":95,"\uff08\u30ad\u30fc":33,"\uff08\u4f8b":33,"\uff08\u578b":66,"\uff08\u79d2":60,"\uff08\uff1d":175,"\uff08age":123,"\uff08and":159,"\uff08byte":[47,60],"\uff08ci":21,"\uff08document":[41,174],"\uff08eol":33,"\uff08gnu":28,"\uff08groonga":33,"\uff08kana":167,"\uff08least":82,"\uff08longest":[37,161],"\uff08markdown":12,"\uff08messagepack":28,"\uff08node":21,"\uff08normalization":164,"\uff08not":159,"\uff08or":159,"\uff08perl":137,"\uff08personal":[],"\uff08piro":41,"\uff08proc":55,"\uff08romaji":167,"\uff08rroonga":33,"\uff08ruby":21,"\uff08score":119,"\uff08term":[172,173,174],"\uff08textile":12,"\uff08tf":172,"\uff08therubyracer":12,"\uff08todo":161,"\uff08tokenbigram":198,"\uff08tokenmecab":198,"\uff08true":201,"\uff08virtualbox":12,"\uff08world":185,"\uff09:":[24,25,26,27,29,30,117,118,196],"\uff09\u3001":[12,172,173,174,181,196],"\uff09\u3002":[33,198,204],"\uff09\u307e\u305f":[107,129,160,161],"\uff09\uff08":123,"\uff11\u3064":[9,87],"\uff11\u5bfe":9,"\uff12\u3064":211,"\uff13\u3064":185,"\uff1f\u300d":202,"\uff1f\uff09":33,"\uff4d\uff59\uff53\uff51\uff4c":[148,149],"\uffef\"":183,"\ufff0\"":183,"\ufffecrch":129,"\ufffetext":129,"] [":136,"] \u6708":33,"]%":171,"]'":[137,189],"])":[45,146,148,155],"],":[75,78,83,85,87,89,90,93,96,104,105,107,108,116,119,121,122,124,125,126,127,129,130,131,135,136,140,143,145,148,149,150,151,153,154,156,157,158,160,161,162,164,171,172,173,174,177,178,180,182,183,195,198,201,202,203,204,206,207,208,209,210,211],"].":[33,41,104,119],"]/":208,"]:":171,"][":[33,37,38,39,40,41,125,160,171],"]\"":[39,40,171,207],"]\u3002":41,"]]":[33,91,93,96,122,135,136,140],"]]]":[91,122,161,198],"]ello":33,"]x":207,"]}":[33,83,153,157,201],"^ \"":[85,153,161],"^commit":12,"_$":[122,123],"_')":[73,86],"_*":[],"_\"":37,"_a":[81,195],"_accepted":116,"_accessor":33,"_account":17,"_add":[53,55,63],"_address":[81,195,208],"_adjust":[11,62,119],"_age":143,"_all":[33,50],"_alloc":[53,69],"_allowed":[81,195],"_already":[81,195],"_and":[11,62],"_animal":201,"_append":[11,53,56,60],"_arg":81,"_argument":[60,63,64,81,195],"_arguments":33,"_asc":63,"_ascending":64,"_at":[],"_auto":[],"_available":[81,195],"_avg":119,"_avoided":[60,81,195],"_bad":81,"_base":[],"_basic":[137,189],"_batch":41,"_between":41,"_binary":39,"_blank":107,"_block":[81,195],"_blog":206,"_body":[86,115,198,210],"_bool":[35,50,60],"_broken":81,"_buffer":[50,56,81,195],"_build":14,"_builtin":[37,51,60,66],"_bulk":[50,53],"_busy":[81,195],"_but":11,"_by":[33,36,37,38,41,53,60,63,64,69,207],"_byte":[81,195],"_cache":[],"_calc":[],"_call":[11,81,116,195],"_cancel":[],"_cas":81,"_case":33,"_cast":[33,60],"_character":53,"_characters":53,"_charlen":69,"_check":[14,41,60],"_checks":107,"_child":[81,195],"_chunk":33,"_chunked":33,"_circle":[],"_clear":[],"_client":161,"_clone":12,"_close":[11,33,37,41,46,50,53,56,57,60,64,69],"_code":[69,78,163],"_column":[],"_columns":[],"_command":[],"_comment":157,"_commit":56,"_compare":60,"_compile":53,"_compress":47,"_concurrency":134,"_cond":65,"_conf":33,"_configure":40,"_connected":[81,195],"_connection":81,"_const":[11,53],"_content":[],"_control":[33,81,195],"_controllen":33,"_copy":[],"_corrupt":[81,195],"_count":[],"_create":[],"_ctx":[],"_current":46,"_cursor":[],"_dat":[],"_data":[],"_database":[],"_dataset":[36,139,141,180],"_date":12,"_db":[],"_db\u30d5\u30e9\u30b0":37,"_deadlock":[60,81,195],"_debug":[7,14],"_decr":60,"_default":[33,39,48,52,59,189],"_defrag":60,"_del":33,"_delete":[33,37,55,60,63,64],"_delimited":42,"_delimiter":[107,129],"_denied":[81,195],"_desc":63,"_descending":64,"_descriptor":[81,195],"_device":[81,195],"_difference":63,"_dir":[12,33,37,69],"_directory":[81,195],"_dist":39,"_distance":[],"_domain":81,"_down":[81,195],"_drilldown":119,"_element":[33,58],"_empty":[81,195],"_enable":33,"_enabled":33,"_enc":[52,64],"_encoding":[],"_end":81,"_enough":[81,195],"_entries":[46,82],"_entry":55,"_error":[69,81,104,195],"_escalation":[],"_escape":[],"_estimate":[33,37,54],"_eval":[],"_example":177,"_exec":[33,50,53,81],"_exist":[],"_exists":[81,195],"_expander":[],"_expanders":[110,111,114,170],"_expansion":[],"_expire":60,"_expr":[],"_expression":[119,171],"_extract":[33,42],"_failure":68,"_false":[50,60],"_file":[33,78,81,137,170,189,195],"_filename":81,"_files":[81,195],"_filter":[],"_filtered":103,"_filters":[],"_fin":[33,39,50,53,68,69],"_finalizer":[50,61],"_flags":[],"_float":[33,66],"_flow":[81,195],"_flush":[],"_for":[11,33,119],"_format":[81,195],"_free":69,"_friends":203,"_full":[],"_func":[41,50,61,65,69,128],"_function":[33,69,81,116,172,195],"_geo":[],"_get":[33,37,38,39,41,45,46,47,48,50,52,53,55,58,59,60,61,63,64,65,69,128],"_github":17,"_gqpt":136,"_gqtp":136,"_groonga":[78,104],"_group":[33,63],"_gt":64,"_hash":[],"_header":87,"_hit":[79,121,137,168,195,204,208],"_hits":119,"_hook":[],"_host":136,"_html":[],"_http":[136,137],"_hugetlb":37,"_i":[81,195],"_id":[12,33,37,38,41,47,50,53,56,57,58,60,63,64,69,73,80,116,119,161,204,211],"_idf":[],"_if":60,"_ii":[],"_illegal":81,"_implemented":[81,195],"_improper":81,"_in":[],"_inappropriate":81,"_incompatible":81,"_incr":60,"_index":[],"_indexer":38,"_indexes":[],"_info":[],"_information":87,"_init":[33,37,39,41,50,53,60,65,68,69,163],"_initialized":[81,195],"_input":[33,78,81,161],"_install":[],"_int":[33,53,60,66],"_interrupted":[81,116],"_invalid":[60,63,64,81],"_io":[33,41],"_ip":[195,208],"_is":[33,37,50,60,78,81,116,195],"_isspace":69,"_items":153,"_ito":37,"_itoh":37,"_ja":40,"_jis":[28,183],"_jp":28,"_json":49,"_key":[],"_keys":[63,119],"_keywords":53,"_label":33,"_labeled":119,"_large":[81,195],"_lcp":63,"_leading":119,"_leak":14,"_left":[37,54,81,147,195],"_len":[39,47,53],"_length":[69,195],"_level":[],"_lexicon":33,"_likes":[78,104,119,160,161,184],"_limit":[],"_link":[81,195],"_links":[81,195],"_list":[],"_literal":41,"_load":[],"_local":136,"_location":[78,207],"_lock":[37,45,60,65,69],"_locked":60,"_locks":[81,195],"_log":[],"_logger":[33,39],"_logical":33,"_long":[81,195],"_lt":64,"_lzo":[47,81,86],"_malloc":69,"_many":[41,81,195],"_mask":60,"_match":[],"_max":[46,48,57,81,119,128,155,195],"_mecab":33,"_memo":154,"_memory":[],"_message":[78,171,206],"_messages":[12,17],"_min":[33,48,57,119],"_mode":41,"_modified":207,"_module":137,"_most":[],"_mruby":[7,8],"_msgpack":49,"_mutex":[65,69],"_n":[40,46,105,119,140],"_nabe":41,"_name":[],"_names":51,"_network":81,"_new":[9,37,39],"_next":[33,35,40,54,57,64],"_nfthreads":65,"_nhooks":55,"_nil":[35,50,53,63,64],"_no":[],"_nofile":[40,163],"_none":49,"_normalize":[33,39,42,63,123,164],"_normalizer":33,"_normalizers":33,"_not":[60,62,81,89,93,97,115,116,119,131,195],"_nromalize":164,"_nsubrecs":[41,47,73,119,202],"_null":33,"_number":[78,192,195,208],"_numbers":33,"_o":[81,195],"_obj":[],"_object":81,"_of":[81,95,195],"_offline":38,"_offset":[],"_on":[81,195],"_only":[81,195],"_op":[11,33,53,62],"_open":[33,35,37,39,46,50,51,54,56,57,64,69,81,195],"_opened":[33,50],"_operation":[81,195],"_operator":[47,53,54,62,63],"_optarg":[33,51,62],"_options":[40,161],"_or":[],"_org":12,"_otoj":14,"_output":[],"_over":[81,195],"_own":33,"_pack":[],"_package":33,"_parameters":[],"_parse":[33,52,53],"_pass":137,"_pat":[],"_path":[],"_pattern":33,"_per":[37,50],"_permission":81,"_permitted":[81,195],"_persistent":[47,63],"_pipe":[81,195],"_plugin":[33,36,37,41,69],"_plugins":[],"_point":[54,146,203],"_pop":33,"_port":136,"_position":[47,86,87,104,115,119,148,149,154,156,157,160,161,162,171,172,173,174,182,184,198,204,206,207,210],"_posting":[54,57],"_pragma":119,"_prefix":[],"_preparer":[122,177,178,180],"_prepend":60,"_pretty":79,"_previous":46,"_printf":41,"_probability":[37,122],"_proc":[],"_process":[81,195],"_processes":[],"_proxy":137,"_ptr":[33,50,53,69],"_push":11,"_put":[],"_pvector":[33,50,53],"_ql":41,"_qlog":39,"_queries":[79,121,137,168,195,204,208],"_query":[],"_range":[],"_rate":[79,121,137,168,195,204,208],"_ratio":41,"_rc":[45,46,47,48,50,51,52,53,54,55,56,58,59,60,61,62,63,64,68,69],"_read":81,"_reader":33,"_realloc":69,"_record":60,"_records":[],"_recover":[33,41,51],"_rectangle":[],"_recursive":33,"_recv":41,"_reference":119,"_refused":[81,195],"_register":[],"_reindex":33,"_reinit":60,"_release":12,"_removable":125,"_remove":[],"_rename":[],"_reopen":[],"_repair":38,"_request":116,"_res":136,"_resource":[60,81],"_result":[63,81,119],"_results":63,"_retry":81,"_right":[37,54,147],"_rk":[],"_rotate":33,"_ruby":33,"_s":41,"_same":40,"_scalar":[47,85,86,87,89,93,94,95,97,101,104,105,109,115,119,125,126,127,131,143,145,148,149,150,151,153,154,156,157,160,161,162,171,172,173,174,182,184,198,202,203,206,207,210],"_schema":[],"_score":[33,37,39,40,47,73,85,119,122,161,172,173,174,207,211],"_scorer":33,"_script":117,"_search":[],"_section":[33,41,47,86,87,206,207],"_seek":[81,195],"_sel":42,"_select":[],"_selector":[],"_send":[46,49,50],"_sequence":[81,195],"_serial":85,"_set":[33,38,39,41,45,46,48,50,52,55,58,59,60,61,64,65,128],"_setoperation":63,"_setpshared":40,"_shard":[],"_shutdowned":[81,195],"_signal":65,"_sis":[63,123,160,161,196,209],"_size":[],"_sjlj":41,"_skip":40,"_small":[81,195],"_snip":[39,41],"_socket":[81,195],"_sort":[33,63],"_sortby":[],"_source":12,"_space":[81,195],"_sparse":33,"_stable":48,"_stack":81,"_stamp":163,"_started":78,"_stop":[33,41,127,182],"_str":[53,207],"_strerror":41,"_string":[],"_success":[45,46,47,50,51,53,60,68,69,81,163],"_such":[81,195],"_suffix":[33,37],"_suggest":36,"_sum":119,"_supported":[81,195],"_symbolic":[81,195],"_synonyms":170,"_syntax":[53,81],"_system":[37,81,195],"_t":[65,81],"_table":[],"_tables":[33,40,50],"_tag":[85,148,151],"_tags":[203,207],"_target":[],"_temporarily":[81,195],"_term":[33,42],"_text":[14,33,41,53,107],"_tf":[],"_thread":[],"_threads":128,"_threshold":[],"_time":[33,78,79,121,163],"_timeout":[45,81,195],"_timestamp":115,"_title":[94,115,136,204,206],"_to":[33,52,102,206,207],"_token":[33,41],"_tokenize":[],"_tokenized":[107,129],"_tokenizer":[],"_tokenizers":33,"_too":[41,81,195],"_touch":[35,51],"_tp":134,"_true":[33,50,60],"_truncate":[37,41,47,63],"_ts":33,"_tsv":[49,170],"_type":[],"_types":[],"_uint":[33,66],"_unavailable":[81,195],"_unknown":81,"_unlink":[50,60],"_unlock":[60,65,69],"_unmap":[],"_unregister":[],"_unsupported":81,"_untag":[],"_update":[47,63,81,119,160],"_use":[33,41,50,81,102,195],"_user":[],"_users":207,"_utf":[52,64],"_valid":137,"_value":[],"_values":[],"_valule":151,"_var":[41,53,61,66,69],"_vars":69,"_vector":[33,40,41,47,50,53,60,75,85,86,87,93,119,153,157,158,201,203,207],"_version":[],"_versions":12,"_vesion":[150,158],"_vprintf":41,"_vsize":[50,53],"_w":183,"_weight":[41,47,75,86,87],"_when":78,"_win":[33,69],"_windows":[33,69],"_with":[7,8,47,63,123,160,161,196,209],"_word":[33,41,94,127,182],"_would":[81,195],"_xml":49,"_xxx":119,"_yyyymmdd":104,"_zlib":[47,81,86],"_zone":137,"_{":40,"`/":18,"``":[34,35,53,206],"`hostname":135,"boolean":42,"byte":[33,39,47,60,63,136,156,195],"c\u30e9\u30f3\u30bf\u30a4\u30e0":33,"case":[69,114,141],"char":[41,47,50,51,52,53,60,61,63,65,66,69],"ci\u4e00\u822c":21,"ci\u4e0a":21,"class":[148,149,150,156],"const":[38,47,50,51,52,53,60,61,63,64,66,69],"continue":41,"cpu\u30b3\u30a2":[],"d\u30ad\u30fc":204,"dat\u30ad\u30fc":40,"default":[],"delete":[],"do":[41,136],"double":[33,161],"else":33,"enter\u30ad\u30fc":40,"enum":51,"error\u30bf\u30b0":39,"export":18,"false":[12,35,40,41,84,85,86,88,89,90,91,93,97,98,99,100,109,115,116,125,129,131,143,148,151,154,157,160,161,183,185,201,209],"float":[],"for":[8,31,39,42,45,49,50,51,53,54,60,65,69,131,135,137,139,140,141,145,156,161,163,180,183,184,185,187,193,207],"function":[33,42,50,69,78,140,142,195],"geopoint\u9593":37,"get\u30e1\u30bd\u30c3\u30c9":138,"gib\u304f\u3089\u3044":184,"gmo\u30e1\u30c7\u30a3\u30a2":41,"html\u30bf\u30b0":150,"id\u9806":64,"if":[11,33,45,47,49,50,51,54,60,61,63,65,68,69,75,135,137,139,140,141,161,163,187],"import":12,"in":[],"int":[],"interface":140,"long":[33,56,59,116],"lzo\u3044":86,"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,163],"sort\u30ad\u30fc":34,"static":65,"this":[18,39,47,49,50,51,60,69,104,119,135,137,139,140,156,160,161,163,189,201,204,208,210],"true":[33,34,40,41,75,84,85,86,87,88,89,90,91,93,95,96,97,98,99,100,101,102,104,105,106,109,110,111,114,115,116,117,118,119,123,125,126,127,131,143,145,146,147,148,149,150,151,153,154,156,157,158,160,161,162,164,167,171,172,173,174,182,185,201,202,203,204,206,207,209,210,211],"try":[45,135,207],"var":[11,28,69,87,133,135,137],"void":[38,45,48,51,52,59,60,63,64,65,68,69],"while":51,"with":[],"x\u30df\u30ea":[161,185],"{\"":[33,75,83,101,102,105,117,118,122,136,148,149,154,160,161,162,171,173,174,177,178,180,182,206],"{\"_":[119,143,160,161,201,203,211],"{\\":96,"{column":171,"{key":119,"{label":[104,119],"{language":17,"{logical":175,"{name":161,"{path":28,"{prefix":[28,110,111,114],"{table":[119,154],"{time":163,"{type":140,"{user":184,"{yyyymm":175,"{yyyymmdd":175,"| _":211,"| c":161,"| n":161,"| y":40,"|')":86,"|..":41,"|:":163,"|<":163,"|>":163,"|allow":[119,160],"|b":171,"|correct":122,"|enable":129,"|full":171,"|ga":119,"|http":136,"|info":171,"|key":[123,160,161,209],"|n":33,"|ng":119,"|none":119,"|on":119,"|oo":119,"|persistent":[87,89,124,126],"|ro":119,"|suggest":122,"|table":123,"|with":[41,75,86,87,104,107,115,119,148,149,154,156,157,160,161,162,171,172,173,174,182,184,198,204,206,207,210],"||":[11,39,40,161,172,206],"})":140,"},":[75,89,105,108,119,126,127,129,130,131,136,145,150,153,154,158,160,161,162,171,183,203,204,206,207,209,210],"}.":[119,154],"}/":[17,28,110,111,114],"}:":171,"}\\":161,"}]":[],"}_":[104,175],"}attr":40,"}e":161,"}|":163,"}}":75,"~ \"":[33,161,171],"~${":171,"~*":53,"~number":161,"~uint":33,abc:33,abcde:107,abi:33,about:[14,18,21,46,69,135,142,163],above:[116,140,180],ac:164,accept:35,accepts:[131,135,140],accesses:47,accessor:[33,60,63],accurate:156,acquire:45,acquires:45,acronym:187,actual:137,add:[17,18,30,39,41,60,103,119,129,142,183],added:[42,54,60,63],adding:[18,60],additional:40,address:[37,39,135,140,195],adjust:119,adjuster:[],admin:[33,35,41],advanced:42,advantage:156,after:[18,54,140],again:[45,137],against:[47,51,135],age:[87,95,119,143],ages:[123,124,143],aggregate:156,ahost:171,aio:40,akio:[35,39],al:183,alert:[41,98,99,135,137,163],ali:85,alice:[85,89,119,126,131,137,143,154,160,189,207],alisa:154,all:[33,39,47,50,51,54,104,119,160,161,163,180,210],alloc:[79,121,135,137,168,195,204,208],allocate:[],allocated:69,allocates:69,allow:[25,39,119,160],allowed:141,allows:156,almost:187,already:[45,69,141],also:[104,119,140,156,160,161,172,187],always:102,am:[149,156],amd:12,an:[51,54,63,69,135,137],and:[18,33,40,41,42,45,47,49,51,53,54,60,63,69,119,127,135,137,139,140,141,154,156,161,163,172,173,174,180,182,184,206,211],animation:203,ann:12,another:33,any:[33,135],api:[],appears:156,appended:60,apple:164,application:[135,137,189],applications:156,applied:42,appveyor:41,april:12,apt:[12,18,21,25,30,39],aptitude:14,ar:[129,196,198],arai:33,aramaki:[35,37],arc:129,architecture:[33,135],architectures:12,archive:[],are:[17,40,45,51,53,54,69,75,135,139,140,141,156,163,172,173,174,180,187],argc:65,argument:[138,161,172],arguments:[69,135],argv:65,armhf:41,arnaud:37,array:83,art:207,arted:161,article:206,articles:206,as:[17,39,50,69,129,135,137,139,140,141,156,187,193],ascii:[160,161,183],assigned:33,associated:69,assumed:61,at:[18,42,54,135,163,207],auth:[137,189],auto:[102,122],autoconf:[6,37],autogen:[6,12,17,39],automake:[6,35],automatically:51,autotools:[],available:[42,69],avg:[41,104,119,134],aware:69,back:161,background:135,backup:[51,94],backward:131,bad:[40,41,195],base:[12,33,69,137],baseball:[203,206],based:[54,148,149,156,193],bash:28,be:[18,47,50,51,53,54,60,63,69,90,114,131,135,140,141,163,180,187],became:193,because:[51,137,140,168,172,180,187],become:42,been:12,before:21,begin:134,behaves:140,bernard:33,beta:42,between:[],bi:[196,198],bigram:[],bigramlexicon:115,bill:[33,196,198],billiard:[196,198],bin:[18,31],binary:[0,168,185],bind:37,binding:[42,148,149],binlib:12,bison:12,bit:[8,21,23,24,25,26,29,30,31,33,40,136,185],black:164,block:201,blog:[157,198,204,206],blogroonga:[],blogs:198,bm:[172,174],bob:[89,119,126,131,137,143,154,160,189,207],bom:35,book:161,bookmark:[75,94],bookmarks:[75,94],bool:[],boost:177,boston:207,both:60,bottom:[37,54,147],brazil:202,brew:[18,27],british:210,broken:[47,51,195],brooklyn:207,brother:160,browser:17,bsd:[5,28,33,41],buf:[47,60,63],buffer:[50,60,83],buffered:56,bug:[39,42],build:[8,12,18,21,25,30,31,40],builder:56,building:49,built:60,bulk:[33,53,60],but:[131,135,140,141],by:[18,39,50,51,53,54,68,69,101,140,160,163,180,187,202],bye:127,bytes:[32,61,69],cache:[],calc:[],calculate:140,called:69,caller:61,calling:[68,69],calros:143,camp:207,can:[17,18,45,49,50,51,69,114,131,135,137,156,163,172,180,187],cancel:116,canceled:116,candidate1:122,candidate2:122,candidate:[122,140],cannot:[],carlos:[89,126,131],cas:195,cases:187,cast:[],casted:60,casts:60,cat:12,cd:[12,17,24,25,26,27,28,29,30,31],cdbs:37,ce:183,ceekz:40,center:146,centos6:39,centos:[],central:207,cents:183,cflags:29,ch:129,change:[18,39,137,189],changed:[42,137],character:[69,163],characteristics:156,charlie:207,check:[],checked:12,checking:[51,140],checks:[41,51,107],china:202,choose:135,christian:33,chroot:12,chunk:83,chunks:199,ci:[],ciritical:137,cities:145,city:[145,207],clean:14,clear:[41,60],clearlock:[],clears:47,clone:[],clumns:184,cmake:[],code:[17,131,163,168],codes:[12,68],col:60,color:164,column:[],columnn:39,columns:[35,39,51,96,119,139,184],com:[9,202],come:207,comma:33,command:[],commandinput:33,commands:187,comment:[33,157,206,207],comments:[],commit:17,common:[37,63,64,135,161],compared:156,compatibility:[131,164],compatible:137,complete:[38,122,140,177,179],composition:164,compress:86,computed:69,concatinated:140,concurrently:163,cond:[40,65],condition:161,conditional:122,conf:199,config:[8,31,34,77],configuration:[40,137],configure:[],confirm:17,conifugration:21,connection:195,connections:135,constant:33,container:53,content:[37,39,40,41,78,104,119,125,137,150,154,156,157,160,161,162,172,182,184,189,206],contents:69,context:[33,50,53,60,104,137,156],continuous:[],contrast:135,contrib:12,copa:33,copied:69,core:136,cores:140,correct:[122,140,178],correction:178,corresponding:60,cosmo:[40,41],count:119,country:[93,202,208],cover:156,coverage:14,cpu:[0,28,136,137,140,189],crash:[],crch:129,create:[69,94,135],created:[69,104,140,207],createfilemapping:33,createrepo:12,creates:[53,69,139,163],crit:[98,99],critical:[69,135,163],ctrl:[135,195],ctx:[9,46,47,50,51,53,60,61,63,69],curl:[21,27,28,39,116,135,137,140,168,189],current:65,currently:[49,51,137],cursor:[54,57,64],customize:137,customized:163,cutter:[],cxxflags:29,daemonize:140,daiki:[35,36,39],dangerous:[47,51],dash:28,dat:181,data:[],database:[],dataset:[139,140,141],datasets:139,date:136,dave:143,day:[162,163],db1:189,db2:189,dbms:156,dcb:41,dcmake:[7,8,31],dd:[161,163],ddb:[204,208],ddl:198,de:17,deb:[12,25,30,39],debhelper:37,debian:[],debootstrap:12,debug:[8,33,98,99,135,137,163],decrypt:12,defalt:35,define:[],defines:139,defrag:[],deleted:60,delimit:40,demo:203,depends:42,deprecated:77,derived:141,descending:33,describe:69,described:135,describes:[18,135],description:[196,207],designed:187,desktop:[8,31],dest:[63,134,135],destination:60,detail:136,details:[69,163],detecting:[],dev:[6,7,25,30],develop:[77,182],developed:182,developer:207,developing:182,development:207,develops:182,dewangga:33,df:174,dgrn:[7,8],dh:12,dictionary:[164,183],diff:136,different:140,digits:163,directive:137,directory:[69,140,141,195],disable:[37,137,140],disabled:163,disables:[18,137],disk:171,dist:12,distance:145,distinct:140,distributions:12,dll:[37,39,41],doc:[12,16,17,18,210],document:[12,35,135,148,149,156,161,172,174],documentation:[18,21],documentations:142,documents:[154,156],doesn:[60,137],domain:[],don:[49,53,135,137,180],done:45,download:[12,24],downloads:31,dragonfly:35,draw:203,drilldown:[],droonga:[151,175],due:156,dump:[],ea:[129,163],each:[53,122,137,140,163,177,178,180],ear:129,earch:129,earlier:131,easier:172,easy:[135,172],ec:119,ecmascript:[39,40,119,159,161],edge:9,edict:41,edit:[],editor:17,editrc:37,effective:135,eggs:206,eight:204,eito:40,el:[24,183],elapsed:[78,140,163,168],element:[33,75,161],elements:75,elfring:39,ellip:145,emacs:17,embedding:135,emerg:[98,99],emergency:[135,137,163],emphasize:150,empty:33,en:[122,129,177,183],enable:[],enabled:163,enables:137,encoded:140,encoding:[52,69,135,168],ency:136,end:[134,148,168,195],endpoint:[140,141],eng:[122,177],engi:[122,177],engin:[122,177],engine:[122,129,148,149,156,172,177,178,179,180],enginen:177,english:[14,18,119],enhanced:42,enourmous:180,enqueue:9,entries:[33,85,104,119,125,148,149,160,161,184],entry:[55,84,85,86,88,91,92,93,96,97,104,115],entrykeys:125,env:170,environment:21,eof:135,epel:[24,39],er:171,eric:143,errno:[33,41],error:[40,41,50,54,69,78,98,99,135,137,163,171,174,204],errror:171,es:183,escape:53,escaped:53,estimate:33,estimated:54,estimates:54,etc:[12,137,184,189],etime:134,euc:[28,40,135,183],evaluated:117,event:[122,139,141,177,178,180],events:189,ex:129,exact:11,example:[119,135,140,177,201,202,203,204,208,211],examples:[35,103],excel:170,except:184,exception:[],exclamation:33,exclude:[39,40,41,101,103,104,106,143],exe:[12,31],exec:195,executable:[],execute:[135,140,141,180],executed:208,executes:[135,140],executing:[50,140],exist:[60,172],existence:51,existing:[18,135,141],exists:[104,125],exit:[],expect:41,explain:33,explicitly:18,expr:[53,60,61,67],express:[8,31,39,40],expression:[33,53,118,119,140],expressions:137,ext:129,extract:[163,180],extracted:53,extracts:53,fa:129,factor:[41,119],failed:[45,204],failures:12,fast:[78,96,104,119,129,148,149,150,151,156,160,161,172,206],faster:187,favorite:17,favorited:207,favorites:207,fbnteqr:33,fd:140,feature:[17,51,135,172],fedora:[],fetched:180,fgets:33,file:[],filename:195,files:[],fills:140,filter:[],fin:61,finalizes:69,find:18,finds:63,finished:[116,163],firefox:17,firewood:[39,40],first:[69,104,119,160,161,207],five:204,fix:[42,87,89],fixed:39,flags:[],floating:185,flower:201,fluent:13,flushviewoffile:33,followee:207,follower:207,following:[18,47,69,135,139,140,141,163,187],fontaine:37,force:[33,129,183],foreground:135,fork:17,forks:135,form:[140,160,164,192,195,204],format:[17,42,49,69,138,140,163,168],formats:163,formula:12,found:[54,63],four:[163,204],frank:143,free:[35,41,50,83,163],freebsd:[],freed:51,frees:69,freq:180,frequency:[41,122,172,173,174,177,178,180],friends:203,from:[],fromtable:85,fsf:39,ftb:42,ftp:[12,136],fu:129,ful:129,full:[33,129,156,171,172,183],fulltext:[129,135,148,149,156],fullwidth:33,fumiyasu:37,func:[50,61,65,69],functionality:140,functions:[33,41,42,69,158],ga:[129,136,164],garbage:[40,83],gb:[121,168,199],gbyte:32,gcc:[24,26,28,29,37,39,40],gdb:14,gem:12,gemfile:39,generate:[18,69],generated:[18,69,139],generates:139,generation:18,geo:[],geodetic:185,geoindex:[],geopoint:[],geoppoint:54,geosite:203,get:[],getaddrinfo:39,getenv:33,gets:69,gettext:[17,18],ghz:136,gi:129,gib:[32,184],git:[6,7,8,12,13,17],github:[6,7,8,12,13,17,19,21,33,37,39,40,41,86],gitter:[2,33],glib:40,glossary:21,gnu:[],gnupg:12,go:[162,187],golubchik:33,gone:203,goo:[160,161],good:[104,119,127,160,161,162,182],google:[119,172,173,174,179],goroo:187,gpg:12,gpl:42,gps:0,gqtp:[],gr:[119,129],grease:201,gregex:40,grep:[24,25,26,30],grn:[],grndb:[],grnline:204,grnslap:[],grnwrap:204,gro:156,gronga:[170,179],gronnga:179,gronoga:137,groo:119,groogna:[38,189],groongau:183,group:[63,202],grroonga:179,gt:[148,149],gtar:29,gted:17,gtihub:37,gzip:[],halfwidth:164,hana:203,hanako:93,handle:50,handled:137,hard:184,hardy:35,has:[12,42,54,63,69,135,139,163,172],hash:[181,207],hat:[],have:[49,51,162],haystack:11,hdd:136,he:183,head:[41,134,195],header:[],heavy:187,hello:[104,119,127,161,162,182,183],help:[14,17,37],helpful:172,hendro:40,here:[69,135,139,140,141,163,180],hex:203,hh:[161,163],hideki:33,high:85,highlight:[],hino:40,hiroaki:33,hiroshi:[35,37],hirotaka:33,hiroyuki:33,hmm:207,ho:183,hobby:163,hoge:144,home:[12,28,183],homebrew:[],homepage:136,hook:55,horikoshi:37,host:[135,136,171,195,208],hostname:[135,137,138],hottolink:42,hour:[45,163],how:[],html:[],http:[],httpd:[12,38,39,40,41],httprewritemodule:137,https:[],hw:27,ia:[196,198],ic:[57,183],ichii:37,id:[],ideographic:33,idf:41,ids:[54,75,85],ieee:185,ifexists:96,ignore:33,ignored:[39,51],ii:171,il:[196,198],ill:196,illegal:195,implementation:187,implemented:[33,42],improper:195,improved:[],inappropriate:195,include:[16,41,101,103,104,106,143],includes:33,incompatible:195,index:[],indexblog:206,indexbuf:47,indicates:163,info:[33,98,99,135,137,171,174],information:163,init:[28,39,41,61],initialization:140,initialize:50,initialized:[50,69],initializes:[68,69],innodb:0,input:[49,78,96,195],inspect:33,install:[],installer:12,instantly:156,instead:[69,84,114,135,193],integer:135,intel:136,internal:41,internally:[49,50],interpreter:12,interrupted:195,into:[50,140,180],introduced:137,introduction:[],inv:136,invalid:[69,95,119,140,195],inverted:156,io:[],ip:[136,140,195,208],ipa:26,iptables:189,is:[17,18,33,39,41,45,47,49,50,51,53,54,60,61,63,69,75,104,116,119,125,127,129,131,135,137,139,140,141,148,149,150,151,154,156,160,161,163,168,171,172,180,182,187,189,193,195,201,204,206,208,210],isn:[50,51,135],iso:161,issue:19,issues:41,it:[18,47,49,50,51,53,54,60,63,68,69,78,96,104,119,131,135,140,141,160,161,162,163,172,187,193,203],itagaki:35,item:[122,139,177,178,180],items:[119,153],its:[53,69,135,163],itself:75,ivh:[24,26],iwai:[38,39],ja:[12,17],jacob:33,james:209,january:140,japan:[93,202,208],japanese:183,jason:209,javascript:[],je:209,jeff:209,jekyll:12,jemalloc:41,jennifer:209,jersey:207,jessie:[],jiro:203,jis:[64,167],job:136,jobs:136,john:[93,209],joseph:209,jq:204,jquery:[35,41],json:[],jsonp:[33,37,140],juman:26,just:[51,60,135,139,140,162,163,207],ka:164,kakesa:33,kana:[122,139,177,178,180],karmic:14,kashihara:41,katagiri:40,katakana:164,kawada:41,kawaji:39,kb:199,kbytes:136,keeps:75,ken:203,kenichi:[35,37],key:[],keybuf:63,keyid:12,keys:[],keyword:[39,40,53,119,148,149,156,160,172,173,174],keywords:53,kib:[33,184],kinjirou:203,kiske:39,kk:171,klose:33,km:207,ko:42,koi:[28,39,135],korea:202,kuriyama:41,kwic:156,kytea:[28,39,40,129],label:[],language:17,larger:[141,180],largetext:181,last:[39,207],lat:136,latency:136,later:135,latin1:39,latin:[28,39,135],launchpad:[12,30,41],layout:12,lc:17,ld:183,learing:180,learn:[140,141],learned:141,learning:[],left:54,length:69,lenny:37,let:162,letter:164,level:[69,98,99,135,137,141,163,195],levels:137,lexicon:[33,94,115,123,124,136,154,157,162,164,206],lf:134,lgpl:42,li:[183,196,198],lib:[35,40,104,110,111,114],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:[172,187],library:[49,135,187],libstemmer:41,libtool:[6,33],libwinpthread:41,libzmq:[25,30],license:[12,42],light:187,like:[47,135,187],limit:[],line:[21,50,78,187],lines:[14,140],link:[201,202,208],links:[201,202,208],linux:[],lion:39,list:[12,18,139,141],listen:[39,135,137,189],lists:41,ll:[129,183,196,198],lldb:[6,7],llt:129,lo:183,load:[],loaded:118,loads:141,local:135,locale:17,localhost:[12,37,116,134,135,136,137,140,168,189],localstatedir:[28,35],location:[],lock:[],locked:69,locks:[69,156],log:[],logaling:21,logged:163,logical:[],logrotate:[39,41],logs:[85,101,103,105,106,109,115,123,124,140,141,163,171,173,174,175],logyyyymmddhhmmss:140,longer:42,longest:63,longitudexlatitude:40,longtext:[],loose:153,looseitems:153,lru:82,ls:12,lt:[129,148,149,156],lte:129,lts:[21,30],lucid:[12,35,40],lz4:[28,41],lz:28,lzo:[37,39,41,47,86,195],m6:29,mac:[],machine:135,macports:[],mail:136,main:[12,25,65],make:[],makecache:[24,39],makefile:[7,8,12],malloc:41,man:[34,143],manage:18,managed:51,management:[21,51,135,156],manager:[137,189],managing:51,many:[75,139,172,187],map:[37,163],mariadb:[40,41],mark:[33,164],marked:193,markup:16,markus:39,marverick:35,masaharu:[38,39],masahiro:35,masatoshi:33,massachusetts:207,master:137,match:[],matched:[54,140],matsuu:35,matthias:33,maverick:37,max:[],may:[47,51],mb:39,mbytes:136,me:[113,183],meaning:135,means:[49,54,60,69,137,163],mecab:[0,12,24,25,26,27,28,30,33,34,35,37,39,40,41,42,183],meerkat:37,memcached:[],memo:[41,154,172],memory:[],memos:[33,151,158,172,182],memset:33,mercurial:12,message:[69,99,101,163,171,173,174,206],messagepack:[],messages:40,metadata:39,micro:207,microsecond:163,microsoft:[8,31,33],migrated:[104,119,160,161],mike:93,millisecond:45,milliseconds:140,mime:[33,189],min:[],minagawa:40,mingw:[12,37],minimum:69,minute:163,mitsuhiro:35,mizuhara:33,mkdir:94,mkostemp:41,mktime:33,ml:10,mlock:35,mm:[161,163],mmap:[],model:135,modern:207,modes:135,module:[],moero:203,money:203,monkey:201,month:[163,203],montywi:38,mooz:37,more:[69,135,141,156,172,195],moritapo:203,moritars:206,morning:162,most:54,mpaa:143,mruby:[6,7,8,33,40,41,117,118,175],msec:45,msg:[9,33],msgpack:[168,195],msvc:33,msyql:75,mte:42,multiple:[140,187],multithread:63,munin:[24,25,26,28,30,34,37,39],museum:207,music:[163,203],must:[47,51,53,54,60,69,90,140,141,180],mutex:[40,65,69],mv:100,my:[104,119,160,161],myisam:0,mysql:[0,12,24,25,26,30,33,41,42,75,107,119,148,149,156,170,172],naist:183,nakamura:33,name:[],namebuf:[47,60],names:85,nanoseconds:163,naoina:[39,40],nargs:53,narwhal:37,natanael:33,natty:37,ne:129,need:[18,49,53,131,135,140],needed:[50,137],negative:[61,69],neologism:183,nested:40,net:202,netbsd:[35,40],netinet:33,network:195,never:102,newark:207,newids:85,newly:[131,156],newnames:85,news:[],newvalue:47,next:[54,61],nfkc:164,nfs:28,nfthreads:65,ng:129,nginx:[],nginxhttpstubstatusmodule:41,ni:[153,167],nice:162,night:[162,210],niho:153,nihon:[153,177],niku:41,nine:204,nippon:177,nise:41,no:[33,34,40,42,54,94,95,103,104,119,171,181,195],noarch:[24,26],node:12,nogpgcheck:39,none:[28,107,119,127,129,135,137,139,195,206],nonexistent:[104,119],normalize:[],normalized:107,normalizer:[],normalizerauto:[],normalizernfkc:[],normalizers:108,normallexicon:164,normally:[49,50,51,135],note:[69,135,140],nothing:[49,158],notice:[33,98,99,135,137,173,174],notification:163,now:[],nroonga:[21,154,206],nsis:12,nsubrecs:[47,104,119,202,203,207],nt:183,nterms:83,nul:[37,51,69,183],number:[54,61,69,83,90,135,136,140,161,180,184],numbers:33,nvars:61,ny:207,obata:35,obj:[47,51,53,55,58,60,61,62,67,83],object:[],objname:[84,92],obsolete:193,obtained:69,occurred:54,ocelot:[37,40],october:41,of:[18,39,42,47,50,54,60,61,63,69,83,90,122,135,137,139,140,141,148,149,156,157,163,180,184,207],off:[41,137],official:12,offset:[],ok:93,okapi:[172,174],old:[12,69],oldvalue:47,om:183,omitted:168,on:[17,42,49,51,54,60,63,69,129,135,137,140,148,149,156,189],one:[69,135,141,156,187],oneiric:[37,40],onga:156,ongaeshi:[33,35,39,40],onigmo:[33,41,171],oniguruma:33,only:[33,49,60,69,135,137],oo:[129,181],ooo:181,op:[47,53,54,62,63],opaque:195,openbsd:33,opened:[51,163],opens:[51,54],operation:[54,195],operator:[33,54],optarg:[51,62],option:[18,135,140,141,163],options:[],or:[41,47,49,51,54,63,69,116,119,131,135,140,151,154,160,163,170,174,183,195,210,211],oracle:[],orangain:40,org:[202,208],origin:17,original:[49,94,209],os:[],osdn:[12,33],other:[33,45,47,51,69,135,141],otherwise:[60,69],out:136,output:[],outputs:[141,163],outputting:49,overcommit:184,owned:53,owner:137,packages:[12,17,24,25,26,27,28,29,30,31,193],pair:[122,139,177,178,180],palallel:12,pangolin:[30,39],parameter:[54,60,61,63,131,135,140],parameters:140,parent:[104,119],parker:33,partial:11,partitioning:101,pass:137,passed:[12,51],passes:12,pat:[64,181],patch:42,path:[],patprefix:209,patsuffix:209,pattern:[160,161],pcre:39,pentium:136,performance:[140,156,187],period:[],permission:195,persistent:[51,63,87],pg:143,pgroonga:[33,172,175],php:[39,187],physical:83,pid:[28,33,34,135],pikonyan:203,pip:18,pkg:[28,29,33,35],pkgs:24,platforms:69,play:210,player:85,players:[85,126],please:[17,51,193],plugin:[],plugins:[114,184],po:[],poedit:17,point:[],pointed:69,pointer:69,popular:[119,135],port:[27,135,136,140,192,195,208],porting:42,position:[54,69,127,129,183],posix:[33,161],post:[],posted:207,postgresql:[0,156,175],posting:54,poyonga:187,ppa:[],pre:42,precise:[12,30,39],prefer:140,prefix:[],previous:193,price:201,priority:119,proc:[24,25,26,30,33,55,61,63,67,69,90,119],process:[],processed:163,processes:135,processing:163,processor:[24,25,26,30],program:[135,140,141],progress:163,project:161,proonga:187,properties:163,protocol:[],provide:140,pthread:[37,40],ptr:69,pub:12,published:12,pull:[],push:[12,17],pushes:50,put:160,python:[12,18,187],qps:[134,136],quantal:39,queries:[136,156],query:[],queryexpandertsv:[],question:33,quetzal:39,queue:9,quiet:195,quit:[],quiz:203,quote:161,raccoon:203,radious:146,rake:12,rakutan:206,raltime:180,ram:136,rand:[],range:[],ranguba:[41,46,75],raring:[40,41],rather:187,rc:[50,68,81,129,163],rch:129,rd:[196,198],rdbms:[0,33,135],rdiscount:12,re:51,read:[156,195],readings:[153,167],readme:[12,40],reads:141,ready:18,real:156,realloc:35,really:[104,119,160,161],realtime:[122,180],received:135,receiver:[140,141],recently:82,recommend:187,record:[33,54,60,63,75,119,145,201,204,208],records:[33,54,119,163,180],recovered:51,recovers:51,rect:145,rectangle:[],recursive:[],red:[],redcloth:12,redhat:[28,37],reduce:[],reduced:[],reference:[33,40,60,75,119,125],referenced:95,referencedbycolumn:125,referencedbytable:125,references:125,referencetable:125,regexplexicon:[115,171],register:[],registered:[69,114,156],regular:[137,140,171],reindex:[],relation:60,relational:135,release:[],released:[12,42],releases:68,remained:[163,171],remote:135,remove:[60,107,125],removed:114,removep:60,removing:51,rep:136,replaced:[139,141],replication:172,replied:207,replies:206,reply:206,repoforge:[24,39],reported:[],reports:69,repositories:12,request:[],requests:[140,163],required:[21,137,140,189],reqular:140,res2:63,res:[54,62,63,136],resizes:69,resource:195,resources:[50,51,68],response:140,rest:69,restart:193,result:[11,63,141,145,156,168,195,206],results:[39,63,140,156],retry:195,returned:[54,69],returns:[47,54,63,69,131,140],reverse:[12,137],rewrited:42,rf:[24,137],rid:[56,57],right:54,ringtail:[40,41],rk:[],rl:183,rlimit:[40,163],rm:137,ro:129,roonga:[160,161],root:[33,40,137,208],rose:201,row:156,rpm:[12,24,26,35,37,39,40,41],rpmforge:24,rroonga:[21,33,40,41,46,151,154,157,158,159,172,206],ruby:[],rubygems:39,rubyinstaller:8,run:[],running:[51,116,135],runs:[135,141],ryo:[],sa:[122,178],sae:[122,178],saer:[122,178],saerc:[122,178],saerch:[122,178],sako:33,salamander:[40,41],same:[40,45,75,187],sample:[136,140,141],sato:[],satoh:37,saucy:[40,41],save:[12,140],saves:140,say:161,scan:14,schema:[33,139],scope:[],score1:11,score2:11,score:[11,33,40,47,75,89,119,122,126,131,140,145,154,161,172,173,174,177,178,180,198,203,204,206,207,211],scorer:[],script:[],se:[129,177],sea:[129,177],sear:177,searc:177,search:[37,39,63,64,119,122,129,135,148,149,156,160,161,170,172,177,178,179,180],searched:54,sebastian:41,sec:45,second:163,section:[47,56,69,135],sed:[33,37,39],see:[18,69,135],segment:83,segments:83,segv:[34,40],select:[],selector:91,selects:54,self:136,sen:42,senboku:40,send:187,sender:[140,141],senna:[],sentense:33,separated:49,sequence:[122,139,163,177,178,180],sequential:[],serach:178,serch:[122,178],sergei:33,sergey:41,serial:85,serihiro:39,serve:12,server:[],service:[33,178,193],session:[140,187],set:[60,136],sets:50,seven:204,sh:[12,21],sha:12,sharding:[33,101,102,103,104,105,175],share:28,shared:[45,47,51],shell:135,shibuya:35,shidara:37,shift:[28,183],shimada:35,shimamura:33,shimoda:35,shimomura:39,shinya:39,sho:40,shopping:162,shops:196,shorttext:[],should:[18,50,69,131],show:34,shows:49,shutdown:[],sid:[12,37,41,83],sigcont:40,sigint:37,sign:12,signing:12,sigsegv:63,sigstop:40,sigusr:37,silent:21,simple:193,since:[114,131,163,193],sis:37,site:[97,115,201,202,204,208,211],sitecountry:[202,208],sitedomain:[202,208],sites:94,six:[163,204],size:[],sizeof:[33,50,53],sjis:[28,42,135],slash:161,sleepy:162,smaller:[75,163],snake:33,snippet3:156,snippet:[],so:[51,60,63,135],soccer:203,socket:195,soft:184,software:30,solaris:[],solr:161,some:[33,68,139,163],sort:[33,63],sortby:[],sound:[164,178],soundkitchen:[37,39],source:[12,33,51,60,78,86,87,89,203,204,206,207],sourceforge:[12,33],sources:[12,18,87],space:[33,69,75,160,171],span:[148,149,150,156],spec:[12,35,39,40],specfied:54,specified:[54,61,69],specifies:[135,140],specify:[17,60,135,137,139,140,141],specifying:69,speed:179,spelling:210,sphinx:[15,16,17,18,33,41],sphr:145,spil:33,sports:203,sql:[101,172,202],squeeze:[12,40],src:63,ss:[161,163,171],ssh:12,ssssss:163,st:[129,161,183],stable:77,stack:[40,195],stamp:163,standard:185,standing:187,start:[33,79,101,121,140,162,193],started:[78,104,119,160,161,163],starting:69,starttime:[33,79,121,137,168,195,204,208],stateful:187,states:93,status:[],still:116,stop:[33,39,135,137,193],storage:[148,149],store:[50,53,54,60],stored:[141,180],stores:53,str:[53,69],strerror:41,strict:41,string1:144,string2:144,string:[],strlen:69,studio:[8,31,33,39,40],sub:[],subject:40,submit:[122,140,177,178,180],subrecord:40,substitution:154,succeeded:[86,89,93,97,115,131],success:195,successfully:69,successor:161,such:[17,39,114,139,140,141,156,180],sudo:[12,14,18,21,24,25,26,27,28,29,30,39,184,193,199,208],sufficient:69,suffixsearchterms:[160,161],suggest:[],suggestion:[139,140],sugimoto:[],suitable:135,suited:156,sum:[41,104,119],summary:[],sunos:41,superior:156,support:42,supported:[42,137],supports:[42,69,141],swig:42,synonym:[119,210],synonyms:170,syntax:[135,195],syscall:[41,204],sysctl:[33,184,199],system:[29,104,119,135,156,160,161,184,185],systemctl:193,systemd:[33,39],systems:156,tab:49,table:[],tablecursor:33,tablegroupflags:33,tablename:77,tables:[],tag:[12,85,104,119,151,158,203],tags:[33,75,87,119,123,124,151,158,203],tahr:[30,41],tail:[12,195],tajima:39,takahiro:35,takashi:[37,93],takayama:33,takayuki:37,takes:116,takuto:35,tar:[12,24,25,26,27,28,29,30],target:[],taro:203,tasuku:42,tatsuya:39,tc:[57,64],tcp:135,te:[129,183],temporary:[51,135],term:[83,86,210],terminal:[135,207],terms:[83,104,119,125,127,135,148,149,154,156,160,161,172,173,174,182,184,198,204],teruya:33,test:[12,14,136,201,204,206,207,208],testdb:[136,141],tests:12,tex:129,text:[],tf:[172,173,174],than:[75,163,171,180,187],thanks:207,that:[39,45,47,49,53,54,60,61,63,69,125,135,140,156,163,187],the:[16,18,39,42,45,47,49,50,51,53,54,60,61,63,69,90,104,116,119,125,135,137,139,140,141,145,156,160,161,163,180,184,187,193,207],theater:210,theatre:210,them:53,then:[69,140],there:[75,135,160,187,193],therubyracer:12,thesaurus:119,these:[51,135,156],they:163,thread:[],threads:[90,140,163],threasd:135,three:[201,204],threshold:[33,37,59,60,92],through:137,thus:[139,141],tid:57,time:[],timeout:[45,60],times:45,timestamp:[101,105,109,115],timeuot:45,tips:[],title:[12,40,41,94,97,115,125,157,172,201,202,203,204,206,208],titles:[160,161],tiwawan:33,tld:202,tmp:[6,7,12,40,87,89,122,124,126,135,140,170,171,189,195,204,208],to:[],tobby:154,todo:[],token:[],tokenbigram:[],tokenbigramignoreblank:[],tokenbigramignoreblanksplitalpha:183,tokenbigramignoreblanksplitalphadigit:183,tokenbigramignoreblanksplitsymbol:[],tokenbigramignoreblanksplitsymbolalpha:[],tokenbigramignoreblanksplitsymbolalphadigit:[],tokenbigramsplitsymbol:[],tokenbigramsplitsymbolalpha:[],tokenbigramsplitsymbolalphadigit:[],tokenbigramsplitxxx:183,tokenbigrm:85,tokenbigrma:129,tokendelimit:[],tokendelimitnull:[],tokenfilterstem:[],tokenfilterstopword:[],tokenize:[],tokenizer:[],tokenizers:[129,130],tokenkytea:39,tokenmecab:[],tokenregexp:[],tokens:129,tokentrigram:[],tokenunigram:[],tokyogeopoint:[],tom:154,tomita:35,tomo:203,tomoatsu:35,tomotaka:37,tomygx:33,too:[33,195,206],tood:69,tool:21,top:[37,54,147],tortoisegit:8,totable:85,total:[83,136],touch:51,toybox:201,tracker:19,transfer:[0,187,193,195],transitional:193,translate:[17,18],translation:17,travel:207,travi:40,travis:[],tried:207,tries:45,tritonn:[104,119,160,161],truncate:[],truncated:40,truncation:[37,131],trust:12,trusty:[12,30,41],ts:183,tsv:[],turn:137,tutorial:69,tweet:162,tweets:162,twiter:39,two:[141,163],tx:183,txt:[16,17],type:[47,49,50,54,58,60,61,63,66,86,87,89,107,122,123,136,140,177,178,180,201,202,203,204,206,207,209,211],types:[107,122,177,178,180],typo:[37,41],ubuntu:[],ueno:[35,36,39],ui:119,uid:12,uint:[],ul:129,ull:129,ultra:203,umask:41,umemoto:37,unchanged:69,under:[137,140,141],unicode:[33,164],unicorn:33,uninstall:39,unique:[116,140],united:93,universe:30,unix:[],unknown:195,unlink:53,unlock:60,unlocked:69,unlocks:69,unmanaged:83,unmaps:51,unpatched:42,unsafe:51,unsigned:[41,46,47,53,56,60,61,63,64,66,69],unsplit:11,unsupported:195,until:[45,69],up:168,update:[],updated:[17,42,198],updates:[18,156],updating:45,upload:12,uptime:[34,79,121,137,168,195,204,208],uri:[137,138],url:[12,37,41,94,138,208],usa:202,usage:135,use:[],used:[49,50,51,60,68,82,85,131,135,140,141,163,187,207],useful:[47,135,172,206],useless:51,user:[61,136,137,140,143,149,154,156,157,161,184,203],username:[31,203],users:[],uses:[49,51,141,163],using:[42,49,180,206],usr:[14,27,28,110,111,114,135,137],usually:141,utc:161,utf:[28,35,39,40,42,52,135,140,161,168,183],utopic:33,uubntu:14,uuuuuu:161,uzulla:37,v1:11,v2:11,vagrant:12,valgrind:14,valid:180,value:[],valuebuf:58,valuen:151,values:[47,49,60,96,135],variable:69,variables:69,variety:203,vars:[61,69],varying:69,vector:[],version:[12,37,42,48,50,79,121,136,137,168,175,195,204,208],versions:193,vervet:[30,33],very:[78,96,104,119,148,149,156,160,161,172],via:180,video:203,view:140,virtualbox:12,visual:[8,31,33,37,39,40,41],vivid:[12,30,33],vm:[],vmstat:199,vmware:12,voiced:164,vojtovich:41,waits:[45,69],wanabe:40,want:[135,140,187],wareohji:39,warning:[98,99,135,137,163,171,174],warp:41,watch:12,way:141,wc:[24,25,26,30],we:187,weakness:156,web:[12,28,34,119,122,160,178,180],webclips:150,weight:[39,47,75,119,172,201],welcome:[104,119,160,161,207],well:156,werewolf:[30,33],wget:[24,25,26,28,29,30],wgs:[],wheezy:[],when:[18,47,51,60,135,140,187],whether:[51,60,131],which:[69,135,140,141],whombx:40,wibowo:40,wiedenroth:41,wiki:137,wikipedia:[167,185],will:[60,69,135,187],wily:[30,33],win:[8,31],windows:[],wing:[39,40],without:[137,156,180],wo:183,word:[39,119,160,161],words:161,work:163,workaround:[],worker:[],works:[69,163],world:183,write:[14,18,38,103,113,119,135],written:[18,131],wrong:[],x6:12,xcode:27,xml:[],xt:[129,183],xvzf:[24,25,26,27,28,29,30],xxx:[33,40,135,161],xxxxx:12,yamaguchi:37,yappo:[40,41,42],year:163,yes:[14,33,79,94,95,103,119,134],yito:[39,40],yoji:37,yoku:[40,41],york:[145,207],yoshioka:39,you:[17,18,47,49,50,51,53,69,131,135,137,139,140,141,180,187],your:[17,18,21,37,135],yuki:37,yum:[12,18,24,26,39],yutaro:33,yuya:33,yyyy:[161,163],yyyymm:175,yyyymmdd:[101,103,104,106,175],zenigata:203,zeromq:28,zip:[],zlib:[25,28,30,35,37,39,40,41,47,86,195],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. \u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8","7.3.4. \u30ea\u30af\u30a8\u30b9\u30c8ID","7.3.5. \u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9","7.3.6. <code class=\"docutils literal\"><span class=\"pre\">cache_limit</span></code>","7.3.7. <code class=\"docutils literal\"><span class=\"pre\">check</span></code>","7.3.8. <code class=\"docutils literal\"><span class=\"pre\">clearlock</span></code>","7.3.9. <code class=\"docutils literal\"><span class=\"pre\">column_copy</span></code>","7.3.10. <code class=\"docutils literal\"><span class=\"pre\">column_create</span></code>","7.3.11. <code class=\"docutils literal\"><span class=\"pre\">column_list</span></code>","7.3.12. <code class=\"docutils literal\"><span class=\"pre\">column_remove</span></code>","7.3.13. <code class=\"docutils literal\"><span class=\"pre\">column_rename</span></code>","7.3.14. <code class=\"docutils literal\"><span class=\"pre\">database_unmap</span></code>","7.3.15. <code class=\"docutils literal\"><span class=\"pre\">define_selector</span></code>","7.3.16. <code class=\"docutils literal\"><span class=\"pre\">defrag</span></code>","7.3.17. <code class=\"docutils literal\"><span class=\"pre\">delete</span></code>","7.3.18. <code class=\"docutils literal\"><span class=\"pre\">dump</span></code>","7.3.19. <code class=\"docutils literal\"><span class=\"pre\">io_flush</span></code>","7.3.20. <code class=\"docutils literal\"><span class=\"pre\">load</span></code>","7.3.21. <code class=\"docutils literal\"><span class=\"pre\">lock_clear</span></code>","7.3.22. <code class=\"docutils literal\"><span class=\"pre\">log_level</span></code>","7.3.23. <code class=\"docutils literal\"><span class=\"pre\">log_put</span></code>","7.3.24. <code class=\"docutils literal\"><span class=\"pre\">log_reopen</span></code>","7.3.25. <code class=\"docutils literal\"><span class=\"pre\">logical_count</span></code>","7.3.26. <code class=\"docutils literal\"><span class=\"pre\">logical_parameters</span></code>","7.3.27. <code class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></code>","7.3.28. <code class=\"docutils literal\"><span class=\"pre\">logical_select</span></code>","7.3.29. <code class=\"docutils literal\"><span class=\"pre\">logical_shard_list</span></code>","7.3.30. <code class=\"docutils literal\"><span class=\"pre\">logical_table_remove</span></code>","7.3.31. <code class=\"docutils literal\"><span class=\"pre\">normalize</span></code>","7.3.32. <code class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></code>","7.3.33. <code class=\"docutils literal\"><span class=\"pre\">object_exist</span></code>","7.3.34. <code class=\"docutils literal\"><span class=\"pre\">plugin_register</span></code>","7.3.35. <code class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></code>","7.3.36. <code class=\"docutils literal\"><span class=\"pre\">quit</span></code>","7.3.37. <code class=\"docutils literal\"><span class=\"pre\">range_filter</span></code>","7.3.38. <code class=\"docutils literal\"><span class=\"pre\">register</span></code>","7.3.39. <code class=\"docutils literal\"><span class=\"pre\">reindex</span></code>","7.3.40. <code class=\"docutils literal\"><span class=\"pre\">request_cancel</span></code>","7.3.41. <code class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></code>","7.3.42. <code class=\"docutils literal\"><span class=\"pre\">ruby_load</span></code>","7.3.43. <code class=\"docutils literal\"><span class=\"pre\">select</span></code>","7.3.44. <code class=\"docutils literal\"><span class=\"pre\">shutdown</span></code>","7.3.45. <code class=\"docutils literal\"><span class=\"pre\">status</span></code>","7.3.46. <code class=\"docutils literal\"><span class=\"pre\">suggest</span></code>","7.3.47. <code class=\"docutils literal\"><span class=\"pre\">table_create</span></code>","7.3.48. <code class=\"docutils literal\"><span class=\"pre\">table_list</span></code>","7.3.49. <code class=\"docutils literal\"><span class=\"pre\">table_remove</span></code>","7.3.50. <code class=\"docutils literal\"><span class=\"pre\">table_rename</span></code>","7.3.51. <code class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></code>","7.3.52. <code class=\"docutils literal\"><span class=\"pre\">thread_limit</span></code>","7.3.53. <code class=\"docutils literal\"><span class=\"pre\">tokenize</span></code>","7.3.54. <code class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></code>","7.3.55. <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. <code class=\"docutils literal\"><span class=\"pre\">between</span></code>","7.14.2. edit_distance","7.14.3. <code class=\"docutils literal\"><span class=\"pre\">geo_distance</span></code>","7.14.4. geo_in_circle","7.14.5. geo_in_rectangle","7.14.6. <code class=\"docutils literal\"><span class=\"pre\">highlight_full</span></code>","7.14.7. <code class=\"docutils literal\"><span class=\"pre\">highlight_html</span></code>","7.14.8. <code class=\"docutils literal\"><span class=\"pre\">html_untag</span></code>","7.14.9. <code class=\"docutils literal\"><span class=\"pre\">in_values</span></code>","7.14.10. now","7.14.11. <code class=\"docutils literal\"><span class=\"pre\">prefix_rk_search()</span></code>","7.14.12. <code class=\"docutils literal\"><span class=\"pre\">query</span></code>","7.14.13. rand","7.14.14. <code class=\"docutils literal\"><span class=\"pre\">snippet_html</span></code>","7.14.15. <code class=\"docutils literal\"><span class=\"pre\">sub_filter</span></code>","7.14.16. <code class=\"docutils literal\"><span class=\"pre\">vector_size</span></code>","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.15.2. \u524d\u65b9\u4e00\u81f4RK\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. \u30b9\u30b3\u30a2\u30e9\u30fc","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>","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,153],"(geopoint":207,"(v":11,"-benchmark":136,"-command":77,"-create":139,"-dataset":139,"-default":28,"-document":18,"-encoding":28,"-escalation":28,"-files":12,"-gqtp":193,"-help":28,"-http":193,"-httpd":[137,140,141,191,193],"-latest":12,"-learner":141,"-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":193,"-suggest":[139,140,141],"-threshold":28,"-version":77,"-with":28,"-zlib":28,".max":184,".maxfileperproc":184,".overcommit":184,".po":17,".po\u30d5\u30a1\u30a4\u30eb":17,"/linux":[7,25],"=encoding":28,"=message":28,"=number":28,"=path":28,"=platform":28,"[$":[104,119],"\u3042\u3052\u308b":198,"\u3042\u308a":[160,161],"\u3042\u308b":207,"\u3044\u304f":10,"\u3044\u308b":166,"\u3044\u308d\u3044\u308d":201,"\u3046\u307e\u304f":10,"\u304a\u304f":10,"\u304a\u3055\u3089\u3044":10,"\u304a\u6c17":207,"\u304a\u77e5\u3089":[33,34,35,36],"\u304b\u3089":[6,7,8,10,24,25,26,27,28,30,31,167],"\u304c\u3063":206,"\u3053\u3061\u3089":10,"\u3053\u3068":12,"\u3054\u3068":206,"\u3055\u307e\u3056\u307e\u306a":211,"\u3059\u308b":[5,6,7,8,10,12,14,19,75,137,140,141,177,178,180,198,199,202,206],"\u305d\u306e":[28,171],"\u305f\u3044":12,"\u305f\u3081":[10,11,104,119],"\u3060\u3051":[10,75],"\u3065\u3051":77,"\u3066\u308b":207,"\u3067\u304d":[125,185],"\u3067\u304d\u308b":[10,11],"\u3068\u3057\u3066":185,"\u3068\u308a":10,"\u306a\u3044":[10,125,185],"\u306a\u3057":[161,189],"\u306a\u306b":183,"\u306b\u3088\u308b":[202,206,209],"\u306b\u5bfe\u3059\u308b":206,"\u306b\u95a2\u3059\u308b":185,"\u306e\u306b":198,"\u306e\u307f":[12,14],"\u306f\u3058\u3081":179,"\u3078\u3068":10,"\u307e\u305f":[7,206],"\u307e\u305f\u3050":206,"\u307e\u3068\u3081":12,"\u3084\u308a":10,"\u3084\u308b":12,"\u3088\u3046":[177,178,180],"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":189,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":189,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"\u30a2\u30f3\u30ab\u30fc":171,"\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,170],"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[32,162,171,203,206],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[72,204],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":123,"\u30a4\u30f3\u30dd\u30fc\u30c8":12,"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":12,"\u30a8\u30b9\u30b1\u30fc\u30d7":[160,171],"\u30a8\u30e9\u30fc":[78,199],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":169,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":161,"\u30aa\u30d7\u30b7\u30e7\u30f3":[134,136,139],"\u30ab\u30b9\u30b1\u30fc\u30c9":93,"\u30ab\u30d0\u30ec\u30c3\u30b8":14,"\u30ab\u30e9\u30e0":[32,71,73,85,145,202,204,206],"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":206,"\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2":0,"\u30ad\u30e3\u30c3\u30b7\u30e5":[103,119,137],"\u30ad\u30fc\u30ef\u30fc\u30c9":[198,207],"\u30af\u30a8\u30ea":[0,11,210],"\u30af\u30a8\u30ea\u30fc":[137,160,169],"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":137,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":1,"\u30af\u30e9\u30b9":171,"\u30b0\u30eb\u30fc\u30d7":[160,161,171],"\u30b1\u30fc\u30b9":125,"\u30b3\u30de\u30f3\u30c9":[76,133,135,138,175,204,208],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[77,189],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":136,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[135,140,168],"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":2,"\u30b3\u30e1\u30f3\u30c8":207,"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[3,15],"\u30b5\u30b8\u30a7\u30b9\u30c8":176,"\u30b5\u30f3\u30d7\u30eb":[134,136],"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[160,161],"\u30b5\u30fc\u30d0":[0,195,208],"\u30b5\u30fc\u30d0\u30fc":[138,186,193],"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":193,"\u30b7\u30b9\u30c6\u30e0":[19,207],"\u30b7\u30d5\u30c8":161,"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0":175,"\u30b8\u30aa\u30b5\u30fc\u30c1":203,"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":74,"\u30b9\u30af\u30ea\u30d7\u30c8":[12,161],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":136,"\u30b9\u30b3\u30a2\u30e9\u30fc":172,"\u30b9\u30b3\u30a2\u30fc":119,"\u30b9\u30bf\u30a4\u30eb":119,"\u30b9\u30c8\u30ec\u30fc\u30b8":0,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":0,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":208,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":161,"\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":[202,211],"\u30bf\u30b0":203,"\u30bf\u30b0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":123,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":189,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":12,"\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8":[6,7,8],"\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0":2,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":200,"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0":184,"\u30c4\u30a4\u30fc\u30c8":10,"\u30c4\u30fc\u30eb":[28,137,208],"\u30c6\u30b9\u30c8":14,"\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":14,"\u30c6\u30fc\u30d6\u30eb":[32,85,123,141,154,181,185,201,204,206,207],"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":137,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":12,"\u30c7\u30d0\u30c3\u30ac":14,"\u30c7\u30fc\u30bf":[123,177,180,185,201,204,207],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[189,204],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":137,"\u30c7\u30fc\u30e2\u30f3":195,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[136,197],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":0,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[183,198],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":183,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":182,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[12,15,22],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[104,119,202],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":164,"\u30ce\u30fc\u30de\u30eb\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":75,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":207,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":192,"\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":209,"\u30d1\u30e9\u30e1\u30fc\u30bf":[77,206],"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[104,119],"\u30d3\u30c3\u30c8":161,"\u30d3\u30eb\u30c9":[5,6,7,8,12,24,25,26,27,28,30,31],"\u30d5\u30a1\u30a4\u30eb":[11,12,17,18,132,170,184,189],"\u30d5\u30a9\u30ed\u30fc":207,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[119,163,170],"\u30d5\u30ec\u30fc\u30ba":160,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":208,"\u30d6\u30ed\u30b0":12,"\u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8":79,"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":189,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":12,"\u30d7\u30ed\u30bb\u30b9":184,"\u30d7\u30ed\u30c8\u30b3\u30eb":195,"\u30d8\u30c3\u30c0\u30fc":195,"\u30d9\u30af\u30bf\u30fc":185,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[75,201],"\u30da\u30fc\u30b8\u30f3\u30b0":119,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":207,"\u30de\u30c3\u30c1":161,"\u30de\u30c3\u30c1\u30ab\u30e9\u30e0":160,"\u30e1\u30e2\u30ea":184,"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[2,19],"\u30e2\u30b8\u30e5\u30fc\u30eb":137,"\u30e6\u30fc\u30b6\u30fc":[10,207],"\u30e6\u30fc\u30b6\u30fcid":207,"\u30e9\u30a4\u30d6\u30e9\u30ea":[0,28],"\u30ea\u30af\u30a8\u30b9\u30c8":80,"\u30ea\u30af\u30a8\u30b9\u30c8id":80,"\u30ea\u30bd\u30fc\u30b9":125,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":81,"\u30ea\u30c6\u30e9\u30eb":161,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7":137,"\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":208,"\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":175,"\u30ec\u30b3\u30fc\u30c9":[119,204],"\u30ec\u30b3\u30fc\u30c9id":181,"\u30ed\u30b0":100,"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":0,"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":100,"\u30ed\u30fc\u30c9":[75,204,207],"\u30ed\u30fc\u30de":167,"\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":14,"\u4e00\u6642":181,"\u4e00\u6642\u30c6\u30fc\u30d6\u30eb":181,"\u4e00\u81f4":[160,161,177,196,209],"\u4e00\u81f4rk":[167,177],"\u4e00\u89a7":[81,133,164,169,175,207],"\u4e0a\u9650":32,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":14,"\u4e0d\u7b49\u4fa1":[160,161],"\u4e26\u3079":204,"\u4e26\u5217":12,"\u4e3b\u30ad\u30fc":[185,209],"\u4e57\u7b97":161,"\u4e8b\u9805":[32,136,185],"\u4ed5\u65b9":17,"\u4ed5\u69d8":194,"\u4ed8\u304d":[161,203],"\u4ed8\u4e0e":206,"\u4ee3\u5165":161,"\u4ee3\u5165\u5f0f":160,"\u4ee5\u4e0a":[160,161],"\u4ee5\u4e0b":160,"\u4ee5\u4e0b\u6f14":161,"\u4f4d\u7f6e":[0,77,145,166,207,211],"\u4f5c\u308a\u65b9":75,"\u4f5c\u308b":6,"\u4f5c\u6210":[12,123,204,205,207],"\u4f5c\u696d":12,"\u4f7f\u3044":196,"\u4f7f\u3044\u65b9":[72,74,75,79,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,135,136,137,140,141,143,145,148,149,150,151,153,154,156,157,158,162,167,168,170,171,172,173,174,177,178,180],"\u4f7f\u3046":[137,145],"\u4f7f\u3063":[6,7,8],"\u4f7f\u7528":184,"\u4f8b\u3048":10,"\u4f9d\u5b58":28,"\u4fdd\u5b58":[123,201],"\u4fee\u6b63":[33,34,35,36,37,39,40,41,42],"\u5165\u308a":207,"\u5165\u6f14":161,"\u5168\u4f53":45,"\u5168\u6587":[0,198,204,206,211],"\u5168\u6587\u691c":[204,205],"\u5168\u6587\u691c\u7d22":160,"\u5171\u6709":0,"\u5171\u8d77":[177,178,180],"\u518d\u8d77\u52d5":193,"\u51fa\u529b":[17,78,104,119,168,204],"\u5206\u3051":196,"\u5229\u7528":[125,137,182,211],"\u5236\u5fa1":161,"\u5236\u9650":[32,75,136,170,181,185,202],"\u524a\u6e1b":125,"\u524a\u9664":[93,125],"\u524d\u63d0":12,"\u524d\u65b9":[160,161,167,177,209],"\u524d\u65b9\u4e00\u81f4":[],"\u5270\u4f59":161,"\u5272\u308a":80,"\u52a0\u7b97":161,"\u52d5\u4f5c":[12,14,177,178,180],"\u52d5\u7684":162,"\u5354\u529b":10,"\u5358\u8a9e":161,"\u5373\u6642":0,"\u539f\u56e0":198,"\u53c2\u7167":[0,195,201,203],"\u53c2\u7167\u578b":75,"\u53c2\u8003":[6,7,8,78,80,81,82,84,87,91,93,96,98,99,100,105,107,108,110,111,113,114,116,117,118,119,122,123,127,129,130,139,148,149,153,154,156,157,159,164,167,170,173,174,181,182],"\u53d6\u5f97":[12,204],"\u53e4\u3044":33,"\u53ef\u80fd":[0,85,90,94,95,101,102,103,104,105,106,107,121,127,128,129,137,140,145,149,154,173,174,182],"\u540c\u3058":198,"\u540d\u524d":[73,134,136,138,139,144,146,147,152,155,185],"\u5411\u3051":[4,12],"\u5426\u5b9a":[160,161],"\u547c\u3073\u51fa\u3057":161,"\u547d\u4ee4":136,"\u548c\u4ee3":161,"\u548c\u6f14":161,"\u56de\u907f":199,"\u56fd\u969b\u5316":17,"\u5727\u7e2e":189,"\u57fa\u672c":[125,161,204],"\u5831\u544a":19,"\u5834\u5408":[12,78,206],"\u5834\u6240":[10,170],"\u5909\u63db":167,"\u5909\u66f4":[35,85,189,198],"\u5909\u66f4\u70b9":12,"\u5927\u306a\u308a":[160,161],"\u5b66\u7fd2":[140,177,178,179,180],"\u5b8c\u5168":196,"\u5b9f\u4f8b":11,"\u5b9f\u73fe":11,"\u5b9f\u884c":[6,7,8,11,12,14,132,136,137],"\u5b9f\u9a13":37,"\u5bc6\u9375":12,"\u5bfe\u5fdc":[10,166,189],"\u5bfe\u7b56":[198,199],"\u5c0f\u306a\u308a":[160,161],"\u5c0f\u6570":161,"\u5c55\u958b":169,"\u5dee\u6f14":161,"\u5ea7\u6a19\u5024":161,"\u5f15\u6570":[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,109,112,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,134,135,136,140,141,143,144,145,146,147,148,149,150,151,153,154,155,157,158,173,174,184],"\u5f53\u3066\u308b":80,"\u5f62\u5f0f":[78,96],"\u5f8c\u65b9":[160,161,209],"\u5f8c\u65b9\u4e00\u81f4":[],"\u5fc5\u8981":[6,7,8,18,150],"\u5fc5\u9808":[85,87,89,90,95,101,102,103,104,105,106,107,109,116,119,121,125,126,127,128,129,131,140,145,149,154,173,174],"\u6027\u80fd":[137,189],"\u60c5\u5831":[0,4,10,14,166,207,211],"\u611f\u8b1d":[33,34,35,36,37,38,39,40,41],"\u6210\u529f":78,"\u6210\u679c":17,"\u623b\u308a\u5024":[82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,138,140,143,145,148,149,150,151,153,154,156,157,158,173,174],"\u624b\u9806":12,"\u6295\u7a3f":207,"\u62bd\u51fa":[161,180],"\u62e1\u5f35":210,"\u6307\u5b9a":[12,77,145,160,185,204,206],"\u6307\u91dd":10,"\u6319\u52d5":196,"\u6392\u4ed6":161,"\u63a5\u7d9a":195,"\u63d0\u4f9b":10,"\u63d0\u6848":[140,179,180],"\u64cd\u4f5c":[165,204],"\u64ec\u4f3c":73,"\u6539\u826f":[33,34,35,36,37,38,39,40,41,42],"\u6570\u5024":201,"\u6574\u6570":161,"\u6587\u5b57":171,"\u6587\u5b57\u5217":[161,201],"\u6587\u66f8":[161,178],"\u6587\u6cd5":211,"\u65b0\u3057\u3044":17,"\u65b0\u898f":12,"\u65b9\u6cd5":[3,5,6,7,8,12,14,15,17,75,77,80,85,162,165,177,178,180,198,199],"\u65e5\u6642":201,"\u660e\u793a":12,"\u660e\u793a\u7684":145,"\u6642\u9593":[161,207],"\u66f4\u65b0":[0,12,17,177],"\u66f8\u304d":196,"\u66f8\u5f0f":[134,136,137,138,140,141,144,146,147,152,155,204],"\u66ff\u3048":204,"\u6700\u5927":184,"\u6761\u4ef6":[12,119,150,160,211],"\u6761\u4ef6\u5f0f":160,"\u683c\u7d0d":185,"\u691c\u51fa":14,"\u691c\u7d22":[0,75,104,119,123,160,161,166,167,177,178,180,196,198,203,204,206,207,209,210,211],"\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,130,131,133,135,137,138,140,141,143,145,148,149,150,151,153,154,156,157,158,164,167,170,171,172,173,174,175,181,182,183,184],"\u69cb\u6587":[82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,135,143,145,148,149,150,151,153,154,156,157,158,160,161,171,173,174],"\u69cb\u7bc9":[14,162],"\u69d8\u3005":14,"\u6a5f\u80fd":166,"\u6b63\u898f":[160,161,171],"\u6bd4\u8f03":[161,189],"\u6c38\u7d9a":181,"\u6d41\u308c":17,"\u6d6e\u52d5":161,"\u6e1b\u7b97":161,"\u6e96\u5099":[12,210],"\u6f14\u7b97\u5b50":161,"\u70b9\u6570":161,"\u7279\u5b9a":[12,14],"\u7279\u5fb4":[0,181],"\u7279\u6709":137,"\u7279\u6b8a":136,"\u72ec\u81ea":161,"\u7406\u7531":10,"\u74b0\u5883":[12,14],"\u751f\u6210":[12,17,18],"\u7528\u3044":[100,211],"\u7528\u79d8":12,"\u7528\u8a9e\u96c6":175,"\u7570\u306a\u308b":198,"\u767b\u9332":19,"\u7701\u7565":[85,90,94,95,101,102,103,104,105,106,107,121,127,128,129,140,145,149,154,173,174],"\u771f\u507d\u5024":[161,201],"\u77e5\u308a":12,"\u78ba\u8a8d":[12,17],"\u7a2e\u985e":201,"\u7a4d\u4ee3":161,"\u7a4d\u6f14":161,"\u7b26\u53f7":161,"\u7b49\u4fa1":[160,161],"\u7b97\u5b50":161,"\u7b97\u8853":161,"\u7ba1\u7406":[137,208],"\u7bc4\u56f2":[123,204],"\u7c21\u5358":[104,119],"\u7d22\u5f15":0,"\u7d22\u7528":[204,205],"\u7d42\u4e86":[137,193,195],"\u7d44\u307f\u8fbc\u307f":[135,164,172,183],"\u7d44\u8fbc\u578b":185,"\u7d4c\u5ea6":0,"\u7d4c\u7def\u5ea6":201,"\u7d50\u5408\u5f0f":160,"\u7d50\u679c":[136,198,202,204],"\u7d5e\u8fbc":211,"\u7de8\u96c6":17,"\u7def\u5ea6":0,"\u7f6e\u63db":154,"\u7f72\u540d":12,"\u7ffb\u8a33":[12,17],"\u8868\u73fe":[11,160,161,171],"\u8868\u793a":204,"\u88dc\u5b8c":[177,179],"\u88dc\u6b63":[178,179],"\u8907\u6570":[189,202,206],"\u89e3\u6790":14,"\u8a00\u8a9e":17,"\u8a2d\u5b9a":[12,21,45,85,137,140,189],"\u8a8d\u8a3c":189,"\u8a98\u5c0e":10,"\u8a9e\u5f59":[204,205],"\u8a9e\u5f59\u8868":123,"\u8aac\u660e":[73,134,136,144,146,147,152,155,185],"\u8aad\u307f":[167,177],"\u8ab2\u984c":19,"\u8ad6\u7406":[160,161],"\u8ad6\u7406\u548c":160,"\u8ad6\u7406\u7a4d":160,"\u8d77\u52d5":[193,195,208],"\u8ee2\u7f6e":0,"\u8fd1\u508d":161,"\u8fd4\u5024":[144,146,147,152,155],"\u8ffd\u52a0":[12,17,164],"\u8ffd\u8de1":19,"\u9001\u308a\u65b9":[17,19],"\u9001\u4fe1":208,"\u9006\u5f15\u304d":203,"\u901a\u4fe1":9,"\u9032\u3081":10,"\u904e\u53bb":10,"\u9055\u3044":104,"\u9069\u7528":75,"\u9078\u629e":171,"\u90e8\u5206":196,"\u90e8\u5206\u4e00\u81f4":[],"\u914d\u5217":161,"\u91cd\u307f":[75,206],"\u91cd\u307f\u4ed8\u304d":75,"\u91cf\u6307\u5b9a\u5b50":171,"\u958b\u3051\u308b":184,"\u958b\u767a":[4,10,20],"\u95a2\u4fc2":[28,104,119,203],"\u95a2\u4fc2\u5f0f":11,"\u95a2\u6570":[14,142,161],"\u95a2\u9023":[15,103,104,119,137,141,206],"\u95be\u5024":198,"\u9664\u7b97":161,"\u96c6\u8a08":0,"\u9759\u7684":[14,162],"\u975e\u308f\u304b\u3061":196,"\u985e\u4f3c":[161,178],"\u9ad8\u5ea6":[104,119],"\uff08personal":30,"_*":65,"_api":11,"_at":173,"_auto":137,"_base":137,"_border":[101,103,104,106,143],"_cache":[46,137],"_calc":[104,119],"_cancel":116,"_circle":146,"_clear":97,"_column":47,"_columns":[103,104,119,154,206],"_command":48,"_content":49,"_copy":85,"_count":[101,184],"_create":[86,123,137],"_ctx":50,"_cursor":[57,64],"_dat":181,"_data":67,"_database":137,"_db":51,"_distance":[144,145],"_encoding":52,"_equal":11,"_escalation":[59,104,119],"_escape":148,"_eval":117,"_exist":109,"_expander":[104,119,154],"_expansion":119,"_expr":[11,53,159],"_filter":[103,113,157],"_filters":[123,129],"_flags":[104,119],"_flush":95,"_full":148,"_geo":54,"_hash":181,"_hook":55,"_html":[148,149,156],"_idf":174,"_ii":56,"_in":[146,147],"_index":[57,102,103],"_indexes":94,"_info":58,"_install":28,"_key":[101,103,104,106,181],"_level":[98,137],"_limit":[82,104,119,128,137],"_list":[87,105,108,124,130],"_load":118,"_log":137,"_map":184,"_match":59,"_memory":184,"_most":173,"_name":[85,89,95,97,115,126,131,148],"_no":181,"_obj":60,"_offset":[104,119],"_or":143,"_output":[104,119],"_pack":28,"_parameters":102,"_pat":181,"_path":[137,140,141],"_plugins":94,"_prefix":28,"_proc":61,"_processes":137,"_put":99,"_query":137,"_range":103,"_records":94,"_rectangle":147,"_register":110,"_remove":[88,106,125],"_rename":[89,126],"_reopen":100,"_rk":153,"_schema":94,"_search":[62,153],"_select":[11,104],"_selector":91,"_shard":105,"_size":158,"_sortby":[104,119],"_string":[154,157],"_table":[11,63,64,85,101,103,104,105,106],"_tagn":148,"_target":[104,119],"_tf":[173,174],"_thread":65,"_threshold":[104,119],"_tokenize":127,"_tokenizer":123,"_type":[49,66,123,145,195],"_types":[104,119],"_unmap":90,"_unregister":111,"_untag":150,"_user":67,"_value":[143,151],"_values":151,"_version":[48,77],"cpu\u30b3\u30a2":189,"default":[77,123],"delete":93,"float":185,"in":[42,151],"int":185,"new":[89,126],"null":161,"package":30,"with":18,"}]":[104,119],adjuster:119,allocate:199,api:[16,44],approximate:145,archive:30,arg:11,autotools:6,between:143,bigram:207,blogroonga:12,body:78,bool:185,cache:[82,103,119],calc:104,callback:11,cannot:199,cast:70,centos:24,changes:42,check:[83,133],ci:21,clang:14,clearlock:84,client:135,clone:17,close:148,cmake:[7,8],column:[85,86,87,88,89,143,148,153,173,174],command:77,comments:207,configure:[6,12,18,28],contain:11,cutter:[12,14],daemon:135,data:141,database:[90,140,141],db:11,debian:[12,25],define:91,defrag:92,desctipion:139,domain:202,drilldown:[104,119],dump:94,edit:144,ellipsoid:145,enable:18,equal:11,executable:135,exit:139,facebook:2,fedora:26,file:135,files:[139,141],filter:[101,103,104,119,157],flags:[107,123,127,129,195],freebsd:184,from:[85,141],geo:[145,146,147],geoindex:207,geopoint:[185,207],get:140,gnu:[6,7,25],gqtp:[9,187,193,195],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,159],grndb:133,grnslap:134,grntest:12,groonga:[0,3,4,5,6,7,8,9,11,12,17,22,42,135,136,137,138,139,140,141,190,191,193],gzip:189,hashtags:207,hat:12,header:78,highlight:[148,149],homebrew:[12,27],how:187,html:[17,18,150],http:[138,168,188,193,208],https:189,id:[80,116],index:[173,174],install:28,introduction:18,io:95,javascript:211,jessie:25,json:[78,96],kern:184,key:123,keys:[104,119],keywordn:148,label:[104,119],launch:140,lcov:14,learning:141,less:11,libmemcached:14,limit:[103,104,119],linux:184,load:96,location:145,lock:97,log:[98,99,100,141,163],logical:[101,102,103,104,105,106],longtext:185,mac:27,macports:27,make:[6,7,12,28],match:[104,119,154,206],max:[82,101,103,104,106,128,143],memcached:192,memory:199,messagepack:78,min:[101,103,104,106,143],mmap:199,mode:[11,127,129,135],mroonga:0,name:[89,109,123,125,126],near:11,news:42,nginx:137,nofile:184,normalize:107,normalizer:[107,108,123,129,148],normalizerauto:164,normalizernfkc:164,not:11,now:152,object:109,offset:[103,104,119],open:148,options:[135,140,141],oracle:29,order:103,os:27,output:[103,104,119],path:118,period:42,plugin:[69,110,111],po:12,point:145,post:[137,189],ppa:30,prefix:[11,153],process:163,protocol:195,proxy:137,pull:17,query:[104,119,153,154,163,195],queryexpandertsv:170,quit:112,rand:155,range:[102,113],recover:133,rectangle:145,recursive:95,red:12,redmine:10,register:114,reindex:115,release:[],request:[17,116,140],rk:[],ruby:[117,118],run:[18,187],scope:157,scorer:[104,119,173,174,211],script:117,select:[104,119],senna:42,server:135,shard:[101,103,104,106],shorttext:185,shutdown:120,similar:11,size:195,snippet:156,solaris:29,sortby:[104,119],sphere:145,standalone:135,status:[121,139,195],string:[107,127,129],sub:157,suffix:11,suggest:122,summary:187,synopstis:139,table:[87,89,119,123,124,125,126,127,181],tables:94,target:[95,97,115,131,151,158],text:[149,185],thread:128,time:185,tips:12,to:[85,140,187],todo:[154,156],token:[123,129],tokenbigram:183,tokenbigramignoreblank:183,tokenbigramignoreblanksplitsymbol:183,tokenbigramignoreblanksplitsymbolalpha:183,tokenbigramignoreblanksplitsymbolalphadigit:183,tokenbigramsplitsymbol:183,tokenbigramsplitsymbolalpha:183,tokenbigramsplitsymbolalphadigit:183,tokendelimit:183,tokendelimitnull:183,tokenfilterstem:182,tokenfilterstopword:182,tokenize:129,tokenizer:[129,130],tokenmecab:183,tokenregexp:183,tokentrigram:183,tokenunigram:183,tokyogeopoint:185,travis:21,truncate:131,tsv:[78,170],twitter:[2,10,12],ubuntu:[12,30],uint:185,unix:7,update:[12,18],use:[103,148],users:207,value:[123,151],vector:158,vm:184,wgs:185,wheezy:25,windows:[8,12,31],worker:137,xml:78,zip:31}})
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/alias","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/pretty_print","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/config_delete","reference/commands/config_get","reference/commands/config_set","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_acquire","reference/commands/lock_clear","reference/commands/lock_release","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/object_inspect","reference/commands/object_remove","reference/commands/plugin_register","reference/commands/plugin_unregister","reference/commands/quit","reference/commands/range_filter","reference/commands/register","reference/commands/reindex","reference/commands/request_cancel","reference/commands/ruby_eval","reference/commands/ruby_load","reference/commands/schema","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/configuration","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/prefix_rk_search","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/operations/prefix_rk_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/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":[145,0,1,"cmdoption--address"],"--bind-address":[145,0,1,"cmdoption--bind-address"],"--cache-limit":[145,0,1,"cmdoption--cache-limit"],"--config-path":[145,0,1,"cmdoption--config-path"],"--daemon":[151,0,1,"cmdoption--daemon"],"--default-match-escalation-threshold":[145,0,1,"cmdoption--default-match-escalation-threshold"],"--dir":[146,0,1,"cmdoption--dir"],"--disable-max-fd-check":[150,0,1,"cmdoption--disable-max-fd-check"],"--document-root":[145,0,1,"cmdoption--document-root"],"--encoding":[145,0,1,"cmdoption--encoding"],"--ftp":[146,0,1,"cmdoption--ftp"],"--groonga":[146,0,1,"cmdoption--groonga"],"--help":[145,0,1,"cmdoption--help"],"--host":[146,0,1,"cmdoption--host"],"--log-base-path":[151,0,1,"cmdoption--log-base-path"],"--log-level":[151,0,1,"cmdoption--log-level"],"--log-output-dir":[146,0,1,"cmdoption--log-output-dir"],"--log-path":[151,0,1,"cmdoption--log-path"],"--log-rotate-threshold-size":[145,0,1,"cmdoption--log-rotate-threshold-size"],"--max-threads":[145,0,1,"cmdoption--max-threads"],"--n-lines-per-log-file":[150,0,1,"cmdoption--n-lines-per-log-file"],"--n-threads":[150,0,1,"cmdoption--n-threads"],"--pid-path":[145,0,1,"cmdoption--pid-path"],"--port":[150,0,1,"cmdoption--port"],"--protocol":[146,0,1,"cmdoption--protocol"],"--query-log-path":[145,0,1,"cmdoption--query-log-path"],"--query-log-rotate-threshold-size":[145,0,1,"cmdoption--query-log-rotate-threshold-size"],"--receive-endpoint":[151,0,1,"cmdoption--receive-endpoint"],"--send-endpoint":[151,0,1,"cmdoption--send-endpoint"],"--server-id":[145,0,1,"cmdoption--server-id"],"-P":[144,0,1,"cmdoption-P"],"-a":[145,0,1,"cmdoption-a"],"-c":[145,0,1,"cmdoption-c"],"-d":[151,0,1,"cmdoption-d"],"-e":[145,0,1,"cmdoption-e"],"-h":[145,0,1,"cmdoption-h"],"-i":[146,0,1,"cmdoption-i"],"-l":[151,0,1,"cmdoption-l"],"-m":[144,0,1,"cmdoption-m"],"-n":[145,0,1,"cmdoption-n"],"-p":[150,0,1,"cmdoption-p"],"-r":[151,0,1,"cmdoption-r"],"-s":[151,0,1,"cmdoption-s"],"-t":[150,0,1,"cmdoption-t"],GRN_COLUMN_NAME_ID:[48,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_COLUMN_NAME_ID_LEN:[48,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],GRN_COLUMN_NAME_KEY:[48,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_KEY_LEN:[48,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],GRN_COLUMN_NAME_NSUBRECS:[48,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],GRN_COLUMN_NAME_NSUBRECS_LEN:[48,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],GRN_COLUMN_NAME_SCORE:[48,3,1,"c.GRN_COLUMN_NAME_SCORE"],GRN_COLUMN_NAME_SCORE_LEN:[48,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE:[48,3,1,"c.GRN_COLUMN_NAME_VALUE"],GRN_COLUMN_NAME_VALUE_LEN:[48,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],GRN_COMMAND_VERSION_MAX:[49,3,1,"c.GRN_COMMAND_VERSION_MAX"],GRN_COMMAND_VERSION_MIN:[49,3,1,"c.GRN_COMMAND_VERSION_MIN"],GRN_COMMAND_VERSION_STABLE:[49,3,1,"c.GRN_COMMAND_VERSION_STABLE"],GRN_OBJ_APPEND:[61,3,1,"c.GRN_OBJ_APPEND"],GRN_OBJ_COMPARE:[61,3,1,"c.GRN_OBJ_COMPARE"],GRN_OBJ_DECR:[61,3,1,"c.GRN_OBJ_DECR"],GRN_OBJ_GET:[61,3,1,"c.GRN_OBJ_GET"],GRN_OBJ_INCR:[61,3,1,"c.GRN_OBJ_INCR"],GRN_OBJ_LOCK:[61,3,1,"c.GRN_OBJ_LOCK"],GRN_OBJ_PREPEND:[61,3,1,"c.GRN_OBJ_PREPEND"],GRN_OBJ_SET:[61,3,1,"c.GRN_OBJ_SET"],GRN_OBJ_SET_MASK:[61,3,1,"c.GRN_OBJ_SET_MASK"],GRN_OBJ_UNLOCK:[61,3,1,"c.GRN_OBJ_UNLOCK"],GRN_PLUGIN_ERROR:[70,3,1,"c.GRN_PLUGIN_ERROR"],GRN_PLUGIN_FIN:[70,1,1,"c.GRN_PLUGIN_FIN"],GRN_PLUGIN_FREE:[70,3,1,"c.GRN_PLUGIN_FREE"],GRN_PLUGIN_INIT:[70,1,1,"c.GRN_PLUGIN_INIT"],GRN_PLUGIN_LOG:[70,3,1,"c.GRN_PLUGIN_LOG"],GRN_PLUGIN_MALLOC:[70,3,1,"c.GRN_PLUGIN_MALLOC"],GRN_PLUGIN_REALLOC:[70,3,1,"c.GRN_PLUGIN_REALLOC"],GRN_PLUGIN_REGISTER:[70,1,1,"c.GRN_PLUGIN_REGISTER"],command:[145,0,1,"cmdoption-arg-command"],db:[146,0,1,"cmdoption-arg-db"],dest:[145,0,1,"cmdoption-arg-dest"],grn_builtin_type:[67,2,1,"c.grn_builtin_type"],grn_cache:[47,2,1,"c.grn_cache"],grn_cache_close:[47,1,1,"c.grn_cache_close"],grn_cache_current_get:[47,1,1,"c.grn_cache_current_get"],grn_cache_current_set:[47,1,1,"c.grn_cache_current_set"],grn_cache_get_max_n_entries:[47,1,1,"c.grn_cache_get_max_n_entries"],grn_cache_open:[47,1,1,"c.grn_cache_open"],grn_cache_set_max_n_entries:[47,1,1,"c.grn_cache_set_max_n_entries"],grn_column_create:[48,1,1,"c.grn_column_create"],grn_column_index:[48,1,1,"c.grn_column_index"],grn_column_index_update:[48,1,1,"c.grn_column_index_update"],grn_column_name:[48,1,1,"c.grn_column_name"],grn_column_rename:[48,1,1,"c.grn_column_rename"],grn_column_table:[48,1,1,"c.grn_column_table"],grn_column_truncate:[48,1,1,"c.grn_column_truncate"],grn_command_version:[49,2,1,"c.grn_command_version"],grn_content_type:[50,2,1,"c.grn_content_type"],grn_ctx:[51,2,1,"c.grn_ctx"],grn_ctx_at:[51,1,1,"c.grn_ctx_at"],grn_ctx_close:[51,1,1,"c.grn_ctx_close"],grn_ctx_db:[51,1,1,"c.grn_ctx_db"],grn_ctx_fin:[51,1,1,"c.grn_ctx_fin"],grn_ctx_get:[51,1,1,"c.grn_ctx_get"],grn_ctx_get_all_tables:[51,1,1,"c.grn_ctx_get_all_tables"],grn_ctx_get_command_version:[51,1,1,"c.grn_ctx_get_command_version"],grn_ctx_get_match_escalation_threshold:[60,1,1,"c.grn_ctx_get_match_escalation_threshold"],grn_ctx_get_output_type:[51,1,1,"c.grn_ctx_get_output_type"],grn_ctx_init:[51,1,1,"c.grn_ctx_init"],grn_ctx_is_opened:[51,1,1,"c.grn_ctx_is_opened"],grn_ctx_open:[51,1,1,"c.grn_ctx_open"],grn_ctx_set_command_version:[51,1,1,"c.grn_ctx_set_command_version"],grn_ctx_set_finalizer:[51,1,1,"c.grn_ctx_set_finalizer"],grn_ctx_set_match_escalation_threshold:[60,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_ctx_set_output_type:[51,1,1,"c.grn_ctx_set_output_type"],grn_ctx_use:[51,1,1,"c.grn_ctx_use"],grn_db:[52,2,1,"c.grn_db"],grn_db_create:[52,1,1,"c.grn_db_create"],grn_db_create_optarg:[52,2,1,"c.grn_db_create_optarg"],grn_db_open:[52,1,1,"c.grn_db_open"],grn_db_recover:[52,1,1,"c.grn_db_recover"],grn_db_touch:[52,1,1,"c.grn_db_touch"],grn_db_unmap:[52,1,1,"c.grn_db_unmap"],grn_encoding:[53,2,1,"c.grn_encoding"],grn_encoding_parse:[53,1,1,"c.grn_encoding_parse"],grn_encoding_to_string:[53,1,1,"c.grn_encoding_to_string"],grn_expr_add_var:[54,1,1,"c.grn_expr_add_var"],grn_expr_alloc:[54,1,1,"c.grn_expr_alloc"],grn_expr_append_const:[54,1,1,"c.grn_expr_append_const"],grn_expr_append_const_int:[54,1,1,"c.grn_expr_append_const_int"],grn_expr_append_const_str:[54,1,1,"c.grn_expr_append_const_str"],grn_expr_append_op:[54,1,1,"c.grn_expr_append_op"],grn_expr_close:[54,1,1,"c.grn_expr_close"],grn_expr_compile:[54,1,1,"c.grn_expr_compile"],grn_expr_create:[54,1,1,"c.grn_expr_create"],grn_expr_exec:[54,1,1,"c.grn_expr_exec"],grn_expr_get_keywords:[54,1,1,"c.grn_expr_get_keywords"],grn_expr_get_var_by_offset:[54,1,1,"c.grn_expr_get_var_by_offset"],grn_expr_syntax_escape:[54,1,1,"c.grn_expr_syntax_escape"],grn_expr_syntax_escape_query:[54,1,1,"c.grn_expr_syntax_escape_query"],grn_fin:[69,1,1,"c.grn_fin"],grn_geo_cursor_next:[55,1,1,"c.grn_geo_cursor_next"],grn_geo_cursor_open_in_rectangle:[55,1,1,"c.grn_geo_cursor_open_in_rectangle"],grn_geo_estimate_in_rectangle:[55,1,1,"c.grn_geo_estimate_in_rectangle"],grn_geo_point:[55,2,1,"c.grn_geo_point"],grn_geo_select_in_rectangle:[55,1,1,"c.grn_geo_select_in_rectangle"],grn_get_default_command_version:[49,1,1,"c.grn_get_default_command_version"],grn_get_default_encoding:[53,1,1,"c.grn_get_default_encoding"],grn_get_default_match_escalation_threshold:[60,1,1,"c.grn_get_default_match_escalation_threshold"],grn_get_lock_timeout:[46,1,1,"c.grn_get_lock_timeout"],grn_hook_entry:[56,2,1,"c.grn_hook_entry"],grn_ii:[57,2,1,"c.grn_ii"],grn_ii_buffer:[57,2,1,"c.grn_ii_buffer"],grn_ii_buffer_append:[57,1,1,"c.grn_ii_buffer_append"],grn_ii_buffer_close:[57,1,1,"c.grn_ii_buffer_close"],grn_ii_buffer_commit:[57,1,1,"c.grn_ii_buffer_commit"],grn_ii_buffer_open:[57,1,1,"c.grn_ii_buffer_open"],grn_index_cursor_next:[58,1,1,"c.grn_index_cursor_next"],grn_index_cursor_open:[58,1,1,"c.grn_index_cursor_open"],grn_info_type:[59,2,1,"c.grn_info_type"],grn_init:[69,1,1,"c.grn_init"],grn_obj:[61,2,1,"c.grn_obj"],grn_obj_add_hook:[56,1,1,"c.grn_obj_add_hook"],grn_obj_cast_by_id:[61,1,1,"c.grn_obj_cast_by_id"],grn_obj_check:[61,1,1,"c.grn_obj_check"],grn_obj_clear_lock:[61,1,1,"c.grn_obj_clear_lock"],grn_obj_close:[61,1,1,"c.grn_obj_close"],grn_obj_column:[61,1,1,"c.grn_obj_column"],grn_obj_db:[52,1,1,"c.grn_obj_db"],grn_obj_defrag:[61,1,1,"c.grn_obj_defrag"],grn_obj_delete_by_id:[61,1,1,"c.grn_obj_delete_by_id"],grn_obj_delete_hook:[56,1,1,"c.grn_obj_delete_hook"],grn_obj_expire:[61,1,1,"c.grn_obj_expire"],grn_obj_get_element_info:[59,1,1,"c.grn_obj_get_element_info"],grn_obj_get_hook:[56,1,1,"c.grn_obj_get_hook"],grn_obj_get_info:[59,1,1,"c.grn_obj_get_info"],grn_obj_get_nhooks:[56,1,1,"c.grn_obj_get_nhooks"],grn_obj_get_range:[61,1,1,"c.grn_obj_get_range"],grn_obj_get_value:[61,1,1,"c.grn_obj_get_value"],grn_obj_get_values:[61,1,1,"c.grn_obj_get_values"],grn_obj_id:[61,1,1,"c.grn_obj_id"],grn_obj_is_builtin:[61,1,1,"c.grn_obj_is_builtin"],grn_obj_is_locked:[61,1,1,"c.grn_obj_is_locked"],grn_obj_lock:[61,1,1,"c.grn_obj_lock"],grn_obj_name:[61,1,1,"c.grn_obj_name"],grn_obj_path:[61,1,1,"c.grn_obj_path"],grn_obj_path_by_id:[61,1,1,"c.grn_obj_path_by_id"],grn_obj_reinit:[61,1,1,"c.grn_obj_reinit"],grn_obj_remove:[61,1,1,"c.grn_obj_remove"],grn_obj_rename:[61,1,1,"c.grn_obj_rename"],grn_obj_search:[63,1,1,"c.grn_obj_search"],grn_obj_set_element_info:[59,1,1,"c.grn_obj_set_element_info"],grn_obj_set_finalizer:[62,1,1,"c.grn_obj_set_finalizer"],grn_obj_set_info:[59,1,1,"c.grn_obj_set_info"],grn_obj_set_value:[61,1,1,"c.grn_obj_set_value"],grn_obj_unlink:[61,1,1,"c.grn_obj_unlink"],grn_obj_unlock:[61,1,1,"c.grn_obj_unlock"],grn_obj_user_data:[68,1,1,"c.grn_obj_user_data"],grn_plugin_charlen:[70,1,1,"c.grn_plugin_charlen"],grn_plugin_command_create:[70,1,1,"c.grn_plugin_command_create"],grn_plugin_expr_var_init:[70,1,1,"c.grn_plugin_expr_var_init"],grn_plugin_isspace:[70,1,1,"c.grn_plugin_isspace"],grn_plugin_mutex:[70,2,1,"c.grn_plugin_mutex"],grn_plugin_mutex_close:[70,1,1,"c.grn_plugin_mutex_close"],grn_plugin_mutex_lock:[70,1,1,"c.grn_plugin_mutex_lock"],grn_plugin_mutex_open:[70,1,1,"c.grn_plugin_mutex_open"],grn_plugin_mutex_unlock:[70,1,1,"c.grn_plugin_mutex_unlock"],grn_plugin_proc_alloc:[70,1,1,"c.grn_plugin_proc_alloc"],grn_plugin_proc_get_var:[70,1,1,"c.grn_plugin_proc_get_var"],grn_plugin_proc_get_var_by_offset:[70,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_plugin_win32_base_dir:[70,1,1,"c.grn_plugin_win32_base_dir"],grn_plugin_windows_base_dir:[70,1,1,"c.grn_plugin_windows_base_dir"],grn_proc_create:[62,1,1,"c.grn_proc_create"],grn_proc_func:[62,2,1,"c.grn_proc_func"],grn_proc_get_info:[62,1,1,"c.grn_proc_get_info"],grn_proc_type:[62,2,1,"c.grn_proc_type"],grn_search_optarg:[63,2,1,"c.grn_search_optarg"],grn_set_default_command_version:[49,1,1,"c.grn_set_default_command_version"],grn_set_default_encoding:[53,1,1,"c.grn_set_default_encoding"],grn_set_default_match_escalation_threshold:[60,1,1,"c.grn_set_default_match_escalation_threshold"],grn_set_lock_timeout:[46,1,1,"c.grn_set_lock_timeout"],grn_table_add:[64,1,1,"c.grn_table_add"],grn_table_at:[64,1,1,"c.grn_table_at"],grn_table_columns:[64,1,1,"c.grn_table_columns"],grn_table_create:[64,1,1,"c.grn_table_create"],grn_table_cursor:[65,2,1,"c.grn_table_cursor"],grn_table_cursor_close:[65,1,1,"c.grn_table_cursor_close"],grn_table_cursor_delete:[65,1,1,"c.grn_table_cursor_delete"],grn_table_cursor_get_key:[65,1,1,"c.grn_table_cursor_get_key"],grn_table_cursor_get_value:[65,1,1,"c.grn_table_cursor_get_value"],grn_table_cursor_next:[65,1,1,"c.grn_table_cursor_next"],grn_table_cursor_open:[65,1,1,"c.grn_table_cursor_open"],grn_table_cursor_set_value:[65,1,1,"c.grn_table_cursor_set_value"],grn_table_cursor_table:[65,1,1,"c.grn_table_cursor_table"],grn_table_delete:[64,1,1,"c.grn_table_delete"],grn_table_delete_by_id:[64,1,1,"c.grn_table_delete_by_id"],grn_table_difference:[64,1,1,"c.grn_table_difference"],grn_table_get:[64,1,1,"c.grn_table_get"],grn_table_get_key:[64,1,1,"c.grn_table_get_key"],grn_table_group:[64,1,1,"c.grn_table_group"],grn_table_group_flags:[64,2,1,"c.grn_table_group_flags"],grn_table_group_result:[64,2,1,"c.grn_table_group_result"],grn_table_lcp_search:[64,1,1,"c.grn_table_lcp_search"],grn_table_rename:[64,1,1,"c.grn_table_rename"],grn_table_setoperation:[64,1,1,"c.grn_table_setoperation"],grn_table_size:[64,1,1,"c.grn_table_size"],grn_table_sort:[64,1,1,"c.grn_table_sort"],grn_table_sort_flags:[64,2,1,"c.grn_table_sort_flags"],grn_table_sort_key:[64,2,1,"c.grn_table_sort_key"],grn_table_truncate:[64,1,1,"c.grn_table_truncate"],grn_table_update:[64,1,1,"c.grn_table_update"],grn_table_update_by_id:[64,1,1,"c.grn_table_update_by_id"],grn_thread_get_limit:[66,1,1,"c.grn_thread_get_limit"],grn_thread_get_limit_func:[66,2,1,"c.grn_thread_get_limit_func"],grn_thread_set_get_limit_func:[66,1,1,"c.grn_thread_set_get_limit_func"],grn_thread_set_limit:[66,1,1,"c.grn_thread_set_limit"],grn_thread_set_limit_func:[66,2,1,"c.grn_thread_set_limit_func"],grn_thread_set_set_limit_func:[66,1,1,"c.grn_thread_set_set_limit_func"],grn_type_create:[67,1,1,"c.grn_type_create"],grn_user_data:[68,2,1,"c.grn_user_data"],script:[146,0,1,"cmdoption-arg-script"]},grn_db_create_optarg:{builtin_type_names:[52,4,1,"c.grn_db_create_optarg.builtin_type_names"],n_builtin_type_names:[52,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:{"!!":[100,147,193,213,217],"!(n":171,"!)":147,"!\"":[39,79,110,128,138,147,170,171,172,182,193,199,211,213,214,216,217,218],"!\\":171,"!condition":171,"!xxx":41,"#'":145,"#[":33,"#arguments":33,"#command":33,"#delete":33,"#each":33,"#groonga":[180,217],"#group":33,"#index":33,"#inspect":33,"#key":33,"#name":33,"#proxy":147,"#remove":33,"#scalar":33,"#set":146,"#value":33,"#vector":33,"#with":33,"#worker":147,"#{":173,"#{l":173,"$(":[24,25,26,27,30],"$groonga":12,"$home":12,"$prefix":37,"${":[17,110,117,128,164,171,181,185,194],"%'":41,"%\"":181,"%\\":31,"%post":39,"& (":171,"& _":221,"& b":171,"& x":41,"& y":40,"&!":171,"&&":[33,128,167,171,208,219],"&..":218,"&arg":181,"&filter":124,"&gt":[158,159,166],"&lt":[158,159,166],"&q":150,"&query":218,"&request":124,"&s":150,"'(":145,"')":[41,100,144,145],"',":[41,61,149,190],"'-":[40,145],"'.":[17,61],"'..":40,"';":145,"'='":145,"'>":160,"'\"":[39,40],"'\u3002":145,"'alice":170,"'column":39,"'config":145,"'fixed":33,"'grn":53,"'hay":11,"'haystack":11,"'ja":17,"'localhost":[144,145],"'m":[172,192,216,217],"'mroonga":164,"'n":145,"'needle":11,"'now":217,"'or":39,"'pid":145,"'query":39,"'s":[17,79,100,110,128,145,167,170,171,172,173,197],"'t":[46,50,51,52,54,61,117,145,147,190],"'user":164,"'ve":217,"'vector":33,"(!":11,"(&":[33,51,54],"('":[74,87,100,145,214],"((":[76,128],"((x":195,"()":[],"(-":171,"(.":12,"(..":40,"(<":11,"(=":[11,82,171],"(>":11,"(?":33,"([":165,"(\"":[39,40,53,124,145,155,158,159,164,166,214],"(\u300c":12,"(_":[33,131,163,171,187,188,190],"(a":21,"(age":153,"(argument":171,"(arugment":171,"(body":[158,159],"(byte":[48,64],"(cmp":41,"(column":[41,153,158,163,166,182,183,184],"(comments":167,"(content":[128,160,166,182],"(ctx":[11,47,48,51,54],"(cutter":14,"(cve":41,"(database":209,"(debian":203,"(default":33,"(drilldown":74,"(fedora":203,"(get":144,"(grn":[33,51,54],"(groonga":66,"(html":160,"(index":[183,184],"(init":51,"(int":66,"(keyword":54,"(location":[155,213,217,221],"(match":164,"(message":[183,184],"(mroonga":180,"(msghdr":33,"(name":70,"(news":12,"(nginx":203,"(null":41,"(packages":12,"(point":[155,156,157],"(popular":128,"(pos":[156,157],"(ptr":35,"(q":66,"(r":[146,181],"(readings":163,"(scan":14,"(scope":167,"(score":33,"(select":171,"(string":154,"(tab":180,"(table":41,"(tag":161,"(tags":168,"(target":[161,168],"(text":159,"(title":[40,154,182],"(uint":66,"(void":66,"(wgs":221,"(windows":146,"(x":41,"(xxx":40,"({":150,")'":[131,158,159,166,167,168,170,171,187,188,190,213,217,221],"))":[33,128,171,180],"),":[40,87],")-":12,").":[12,145,150,166,203],")..":12,")/":33,"):":[12,117,203,214],");":[11,33,47,48,51,54,66],")=":209,")\"":[40,128,160,166,170,181,182,183,184,220],")\\":181,")\u3001":41,")\u300d":145,")\u3059\u3079\u3066":153,")]":40,")disk":181,")grn":33,")groonga":180,")hello":33,")mroonga":180,")offset":[64,65],")senna":180,"*'":[110,128],"**":[48,52,61,62,65,105],"***":105,"*/":[51,54,66,69],"*\"":[33,36,41,110,128,216],"*added":64,"*bottom":55,"*bsd":[7,8,35,37],"*buffer":61,"*cache":47,"*column":48,"*ctx":[47,48,51,52,54,55,56,57,58,59,60,61,62,63,64,65,67,68,70],"*cursor":55,"*data":[56,66],"*db":[51,52,61],"*dest":64,"*destination":61,"*escaped":54,"*expr":54,"*fin":62,"*func":[51,62],"*grn":66,"*ic":58,"*ii":57,"*index":[55,58],"*init":62,"*key":64,"*keybuf":64,"*keys":64,"*keywords":54,"*max":65,"*min":65,"*mutex":70,"*name":[48,51,53,54,61,62,64,67,70],"*namebuf":[48,61],"*newvalue":48,"*next":62,"*nvars":62,"*obj":[48,52,54,56,59,61,62,63,68],"*oldvalue":48,"*optarg":[52,63],"*path":[48,52,64],"*proc":56,"*query":[54,63],"*res":[55,63,64],"*result":64,"*results":64,"*s":41,"*section":48,"*source":61,"*src":64,"*str":[54,70],"*string":54,"*table":[48,61,64,65],"*tables":51,"*target":54,"*tc":[58,65],"*tid":58,"*top":55,"*type":48,"*user":[62,70],"*value":[57,59,61,64,65],"*valuebuf":59,"*var":70,"*vars":[62,70],"+ \"":[33,39],"+ y":195,"++":[0,6,7,12,24,26,28,33,37,38,41,51,54,66,145,197],"+-":[54,147],"+a":170,"+c":145,"+ff":[33,174],"+ff0":33,"+ffef":193,"+fff":193,"+fffe":138,"+or":181,", \"":[76,158,216],", {":[147,199],",'":[195,211],",*":109,",.":12,",..":[100,133],",[":208,",[\"":208,",\"":[33,41,84,98,178,213,216,217],",\"domain":212,",\"http":211,",\"link":211,",\"links":211,",\"location":[213,221],",\"tags":213,",\"title":214,",\\\"":100,",\n#":[44,76,94,110,116,117,127,128,134,136,138,164,170,171,182,193,211,213,214,217,218,221],",\n[":[33,98,166],",\n]":[128,167,208,211,219,221],",\n{":[76,98,107,110,128,131,147,161,163,164,167,170,171,174,177,181,182,183,184,187,188,190,192,212,216,219],",_":[76,110,128,131,164,171,212,213,214,217,221],",{":[80,145,146,178],"- \"":41,"-(":[12,171],"-+":147,"--":[8,12,31,34,35,36,37,39,40,41,46,47,48,49,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66,67,68,70,76,107,110,123,127,128,134,136,138,145,146,147,158,159,160,161,163,164,166,168,171,180,181,182,183,184,190,192,208,212,213,217,220,221],"->":[33,35,134],"-\"":136,"-_":[128,182,183,184],"-a":[39,145,170],"-add":52,"-address":[33,37,39,145],"-adjuster":[76,128],"-admin":39,"-aki":41,"-analyzer":[37,39],"-api":16,"-apt":30,"-autoreconf":12,"-base":[150,151],"-benchmark":[],"-binary":[147,199],"-bind":[33,37,39,145],"-blog":217,"-bugs":33,"-build":14,"-bye":[110,128,136,170,171,192],"-c":[24,26,145,205],"-cache":[33,40,145],"-check":[35,37,150],"-chroot":12,"-ci":[40,41],"-ci\u4e0a":40,"-client":197,"-code":[12,41],"-column":33,"-command":[],"-commnad":78,"-common":[30,39],"-conditional":37,"-config":[28,33,34,35,37,39,145],"-create":[],"-cutter":12,"-d":[145,147,150,151,202,205,218],"-daemon":[150,151],"-databases":[88,90,117,133,135,150,205,214,218],"-dataset":[],"-db":38,"-dcmake":[7,8],"-dd":[171,173],"-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":146,"-directory":39,"-disable":[35,37,41,150],"-doc":38,"-document":[],"-docutils":12,"-drilldown":[33,41,110,128,212],"-dump":33,"-e":145,"-each":37,"-eanble":6,"-efficient":76,"-enable":[3,6,18,35],"-encoding":[],"-encodiong":171,"-endpoint":[150,151],"-escalation":[],"-essential":[25,30],"-event":33,"-existence":40,"-fd":[37,150],"-file":[33,37,79,150],"-files":[],"-filter":[25,30,33,37,39,41,76,128,152,159,164,166,167,171,181,217,219],"-force":117,"-frequency":37,"-ftp":146,"-full":12,"-g":[8,31],"-get":[12,18,25,30,39],"-gobject":33,"-gqtp":[],"-gram":[0,138,171,206,208,214],"-groonga":[12,13,146,217],"-h":[145,147,199],"-help":[],"-history":37,"-host":146,"-html":[35,39],"-http":[],"-httpd":[],"-i":[33,145,146],"-id":[39,124,145],"-idf":[182,183,184],"-in":[12,61],"-index":33,"-inverse":[182,184],"-ipadic":[26,193],"-j":[6,7,28],"-jemalloc":41,"-jinja":12,"-jp":[40,193],"-jumandic":26,"-key":[12,38],"-keyring":[25,39],"-keys":12,"-known":166,"-l":[145,150,151,173],"-latest":[],"-launchpad":12,"-leak":35,"-leaner":151,"-learner":[],"-level":[33,41,145,151],"-libedit":35,"-libevent":38,"-libstemmer":41,"-limit":[33,34,40,128,145],"-line":21,"-lines":[37,150],"-localstatedir":[],"-log":[],"-lz4":[],"-lzo":87,"-m":144,"-match":[],"-max":[37,145,150],"-mecab":[24,25,26,27,30,39,40,41],"-memcached":33,"-memory":35,"-message":[],"-mm":[171,173],"-mode":17,"-mruby":[6,12,41],"-msgpack":199,"-munin":[],"-mysql":[24,25,26,30,113,174],"-n":[37,145,150,214],"-neologd":193,"-node":24,"-normalizer":[24,25,26,30,33,39,113,163,174],"-offset":[33,128],"-org":12,"-oriented":166,"-output":[33,39,40,128,146,158,159,160,166],"-p":[144,145,146,150,205,218],"-pack":[],"-package":[],"-packages":12,"-patch":17,"-path":[],"-per":[37,150],"-pgp":12,"-pid":[33,37,145],"-pip":18,"-platform":[],"-plugin":13,"-plugins":[],"-po":[],"-point":195,"-port":[145,146,150],"-prefix":[],"-properties":30,"-protocol":[145,146,148,202,218],"-query":[33,37,39,40,41,145,147,158,159,164,166,170,173,180,203,214,217,219],"-r":[150,151],"-receive":[150,151],"-release":[],"-repository":[12,30,39],"-root":[35,145,148],"-rotate":[33,145],"-rpm":12,"-rroonga":47,"-ruby":[6,12,39],"-s":[145,150,151,205],"-scorer":152,"-search":[41,193],"-searchu":193,"-secret":12,"-send":[150,151],"-separated":33,"-server":[],"-size":[33,145],"-sortby":40,"-source":12,"-sphinx":[12,18],"-src":[12,25],"-static":37,"-stem":[25,30,41],"-strings":38,"-suggest":[],"-t":[145,150],"-talk":[2,12,33,40],"-tar":29,"-target":[],"-terminated":[62,70],"-test":[12,14],"-text":193,"-threads":[145,150],"-threshold":[],"-time":166,"-token":[25,30,41],"-tokenizer":[24,25,26,30,39,40],"-type":[37,147,187,188,190,199],"-unauthenticated":[25,39],"-uploader":12,"-use":33,"-values":33,"-version":[],"-w":12,"-windows":33,"-with":[],"-wno":37,"-word":128,"-working":39,"-x":[12,40],"-yyy":17,"-z":150,"-za":150,"-zlib":[],".$":[110,128],".'":[39,40,87],".(":12,".)":[40,61,171,173,182,194],".,":[127,128,161],".-":17,"..":[6,7,17,39,40,66,70,76,81,84,88,100,111,124,127,128,131,132,145,147,148,161,164,170,171,181,182,183,184,199,214],"...":[33,37,39,40,41,46,47,48,49,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,71,80,84,124,128,131,133,145,146,147,148,150,158,167,170,171,172,178,181,185,217],"./":[17,28],".:":[150,151],".>":185,".\"":[128,158,159,164,166,171,172,182,193,211,213,214,218,220],".]":[76,84,124,131,133,171],"._":[40,41,61,110,128,134,170,171,211,212],".age":[44,99,127],".am":18,".am\u30d5\u30a1\u30a4\u30eb":12,".asc":12,".askmonty":41,".blog":208,".body":[85,96,220],".builtin":52,".c":[42,91,94,117,128,134],".clean":12,".co":[42,128],".column":[40,41,44,86,91,92,93,99],".com":[6,7,8,12,13,17,21,211,212,214,218,221],".comment":[216,217],".conf":[33,147,194,203,209],".content":[110,127,128,134,167,170,171,172,194,216],".context":134,".created":110,".current":33,".d":[25,194,209],".db":[40,145,205,214,218],".ddl":146,".deb":12,".debian":12,".description":217,".dll":70,".domain":33,".dump":37,".en":12,".entries":194,".entry":123,".exe":31,".fedoraproject":24,".flags":64,".garbage":40,".git":[6,7,8,12,13,17],".github":17,".gpg":12,".grn":[98,147],".groonga":[12,17,24,25,26,27,28,29,30,31,146],".group":167,".gz":[12,17,24,25,26,27,28,29,30],".h":[16,33,70],".hash":217,".high":86,".html":[12,17,145,147],".htpasswd":[147,199],".i":24,".index":[33,99,123,127],".jp":[12,33,42,128],".js":12,".js\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":21,".json":[147,178],".kentaro":40,".key":[64,134],".label":[128,163],".lemon":44,".list":[12,25],".load":146,".location":217,".log":[28,33,78,145,146,147,203],".logs":123,".md":12,".md\u30d5\u30a1\u30a4\u30eb":12,".me":[2,12,33],".memos":127,".mo\u30d5\u30a1\u30a4\u30eb":17,".msgpack":178,".n":[52,110,128,170,171,194],".name":[84,143,167,217],".ncpu":27,".ne":42,".nested":128,".net":[2,12,211,212,213,214,218,221],".nginx":147,".o":213,".offset":64,".org":[12,17,24,25,26,27,28,29,30,31,33,41,47,76,98,146,147,160,211,212,213,214,218,221],".osdn":[2,12],".output":148,".overcommit":[],".patch":17,".pc":[36,37],".php":12,".pid":145,".po":[],".po\u30d5\u30a1\u30a4\u30eb":[],".posted":217,".rb":[35,41,110,126],".readings":163,".real":[44,91,92,93],".reference":134,".repoforge":24,".roonga":[170,171],".rpm":[24,26],".score":140,".scr":146,".select":[146,171],".serial":86,".service":39,".set":110,".sh":[6,12,14,17,21,39],".site":123,".so":[118,119,122],".source":33,".sourceforge":[2,12],".spec":37,".ssssss":173,".status":146,".sub":[110,128],".synonym":128,".t":193,".tag":[86,110,128],".tar":17,".timestamp":[115,117],".title":[101,102,103,123,134,211],".to":86,".travis":21,".tsv":[178,180],".txt":[12,193],".uuuuuu":171,".value":128,".weight":40,".x":24,".xml":178,".years":44,".yml":21,".zip":17,".}":[76,84,171],"/ '":61,"/#":47,"/$":17,"/'":41,"/(":12,"/*":[16,17,51,66,69,147,203,209],"/+":12,"/.":37,"/..":[12,147],"/;":147,"/?":150,"/\"":[76,193,211,212,213,214,218,221],"/\u65e5":217,"/\u6708":217,"/\uff09":35,"/_":12,"/aba":[212,214,221],"/acccess":203,"/admin":[37,145],"/afr":[212,214,221],"/alice":193,"/api":199,"/apt":[12,25],"/archive":12,"/atv":[212,214,221],"/base":12,"/bc":12,"/bin":28,"/blog":12,"/branches":14,"/c":[0,6,7,16,197],"/cache":147,"/centos":[12,24,203],"/command":[14,147,148,181,218],"/commands":[41,88,90,117,133,135],"/commits":41,"/context":110,"/copyright":41,"/coremodule":147,"/cpuinfo":[24,25,26,30],"/cutter":12,"/d":[41,147,181,199],"/data":21,"/database":[147,199],"/db":[98,131,143,147,151,181,203],"/db1":199,"/db2":199,"/dd":171,"/debian":[12,25],"/default":[39,203],"/dev":12,"/dictionary":35,"/disk":181,"/doc":12,"/docs":147,"/en":[12,18,147],"/en\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0":2,"/epel":24,"/etc":[12,25,39,147,180,194,203,209],"/eval":125,"/f":12,"/false":[34,211],"/fedora":[26,35,39],"/files":[12,18],"/function":12,"/functions":14,"/gat":[212,214,221],"/gqtp":[40,203],"/grntest":12,"/groonga":[6,7,8,12,13,16,17,21,24,25,26,27,28,29,30,31,33,35,37,39,40,88,90,117,118,119,122,133,135,143,145,147,150,180,194,203,205,214,218],"/header":29,"/hoge":145,"/home":193,"/homebrew":12,"/hostname":[145,146],"/hosts":12,"/html":[17,18,37,199],"/http":[147,203],"/httpd":[147,203],"/in":33,"/index":[12,17,145],"/introduction":[205,214,218],"/ja":[12,17,47],"/ja\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0":2,"/javascript":37,"/json":[37,147,199],"/key":61,"/kytea":138,"/lc":[12,17],"/lib":[118,119,122,143,147,203],"/limits":194,"/linux":[],"/lists":12,"/load":[126,147,199],"/local":[6,7,12,28,147],"/locale":[12,17,18],"/log":[28,33,145,147,150,203],"/lzo":[35,37,40],"/mailarchive":12,"/managers":[147,199],"/master":[17,21],"/max":41,"/meetup":33,"/message":12,"/mm":171,"/modules":[35,147],"/mpisel":33,"/mrb":110,"/munin":28,"/mxcl":12,"/news":12,"/nfs":28,"/ngx":147,"/non":40,"/null":[6,7,34],"/o":132,"/other":147,"/packages":12,"/php":33,"/pipermail":41,"/plain":33,"/plugins":[28,35,40,118,119,122],"/ppa":[12,30],"/projects":12,"/pub":24,"/pull":12,"/query":[118,119,122],"/rab":[212,214,221],"/raw":21,"/repositories":12,"/request":124,"/result":38,"/rpmforge":24,"/rroonga":41,"/run":[12,14,145],"/rurema":41,"/sbin":27,"/scripts":110,"/security":194,"/select":[124,147,218],"/setup":21,"/share":[37,145],"/shutdown":[145,147,199],"/source":[12,16,17,18,24,25,26,27,28,29,30,31],"/sources":[12,25],"/span":[158,159,166],"/srpm":12,"/status":[144,147,178,199,218],"/stem":192,"/stop":[98,136,192],"/string":33,"/synonyms":180,"/sysconfig":203,"/sysctl":[27,194,209],"/tab":33,"/test":193,"/tmp":[6,7,180,199],"/to":[147,199],"/travis":21,"/tsv":[118,119,122,180],"/ubuntu":[12,39,203],"/unit":14,"/usr":[28,145],"/var":[28,33,143,145,147,203],"/vdw":[212,214,221],"/vector":[33,168],"/version":33,"/wgs":221,"/windows":[12,31],"/work":12,"/x":199,"/xml":199,"/yum":12,"/~":12,"0c":193,"0e":146,"0mq":40,"0x":[38,170,195,205,211],"0xc":205,"10":[146,214],"11":[76,117,128,164,171,194,208],"1\u305a":[74,78],"1\u3064":[10,32,33,37,40,41,44,54,72,76,83,86,88,91,92,99,101,102,103,108,110,111,115,116,117,118,119,122,123,124,125,126,127,128,131,132,134,137,138,140,141,146,147,159,161,163,164,166,167,170,171,181,182,183,184,185,189,191,193,194,199,205,211,213,216,217],"1\u30f6\u6708":185,"1\u4ef6":[208,217],"1\u5ea6":69,"1\u6708":[171,195,211,217],"1\u884c":146,"1byte":205,"1f":33,"1g":[25,30],"1gb":33,"1o":181,"2\u3064":[19,24,25,26,30,33,40,41,87,88,93,99,107,108,109,110,112,117,128,132,135,136,137,154,163,164,167,170,181,182,183,190,193,198,199,203,211,212,214,216,217],"2\u3064\u3081":[124,170,199,216],"2\u5104":32,"2\u6708":107,"2byte":205,"2grn":41,"3\u3064":[14,40,79,90,107,113,128,158,166,169,211,212,214,216],"3ki":35,"4\u3064":[86,145,166,182,191],"4byte":205,"4e":209,"4gbyte":32,"4gib":[191,205],"4kib":[33,44,91,92,93,141],"5\u3064":153,"5b":[93,141],"5f":146,"6elz":41,"6fd":130,"6gib":194,"7\u3064":130,"7\u6708":33,"7e":146,"7f":130,"8bit":195,"8byte":205,"8r":[28,39,145],"9\u3064":214,"9e":174,"9f":178,": n":144,":!":170,":#":41,":#{":173,":$":[18,170,171,219],":')":87,":..":128,":/":[12,13,17,21,24,25,26,27,28,29,30,31,41,47,76,98,124,144,145,147,148,150,160,178,199,211,212,213,214,218,221],"::":[33,82,110,178],":<":[128,170],":=":[128,170],":>":[128,170],":@":[128,164,170,211,213,214,217,218],":[":[146,181],":\"":[54,181,214],":\\":[8,31,181],":\\\"":100,":\u5206":217,":\u79d2":217,":^":[170,219],":bob":217,":byte":67,":clear":12,":dat":116,":groonga":[6,7,8,12,30,128,170],":hash":116,":mm":[171,173],":no":116,":order":33,":pat":116,":port":[145,147,148],":set":41,":ss":[171,173],":value":[128,170],":~":[170,181],";/":[158,159],";\"":39,";b":[158,159],";rroonga":[158,159],"< n":171,"< t1":11,"< y":40,"<#{":173,"<-":199,"<..":185,"</":[117,158,159,160,166,178],"<=":[40,147,171,217],"<directory":151,"<encoding":145,"<endpoint":151,"<gqtp":146,"<groonga":146,"<ip":[145,146],"<level":151,"<limit":145,"<log":145,"<max":145,"<path":[145,151],"<port":[145,146],"<protocol":145,"<span":[158,159,166],"<threshold":145,"= \"":[41,107,128,171],"= n":171,"= y":40,"=$":[12,17,28],"='":160,"=(":12,"=)":11,"=-":28,"=..":12,"=/":[6,7,12,14,28,145,180],"==":[33,171],"=\"":[29,110,128,158,159,166,178],"=\\":[158,159,160,166],"=_":109,"=`":18,"=add":138,"=allow":128,"=arg":181,"=ascending":109,"=c":[8,31],"=complete":150,"=dat":38,"=encoding":[],"=fedora":12,"=g":150,"=get":136,"=gr":150,"=gro":150,"=groo":150,"=groonga":[147,150],"=grooon":150,"=i":12,"=largetable":124,"=message":[],"=no":[109,117],"=none":[110,113,128,136,138],"=null":[83,99,101,102,103,108,109,110,116,123,128,132,137,138],"=number":[],"=on":[7,8],"=pat":38,"=path":[],"=platform":[],"=query":150,"=r":39,"=redhat":28,"=site":218,"=sjis":28,"=squeeze":12,"=submit":150,"=table":132,"=title":218,"=true":124,"=unique":124,"=users":[147,199],"=yes":[12,14,33,38,40,99,128],"> \"":33,"> y":40,">#{":173,">(":117,">.":[158,159],">:":110,"><":[54,178],">=":[40,117,171],">>":[40,171],">\"":[40,44,94,110,117,128,134,158,160],">\n<":178,">alloc":178,">cache":178,">command":178,">default":178,">max":178,">n":178,">rroonga":[158,159],">starttime":178,">uptime":178,">version":178,"??":128,"?arg":181,"?argument":148,"?i":181,"?id":124,"?max":33,"?msg":12,"?parameter":147,"?table":[124,147,199,218],"@'":214,"@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],"@~":181,"[#":[37,38,39,41],"[$":[],"[(":181,"[,":156,"[2":145,"[:":218,"[@":[37,39,40,41],"[[":[44,76,86,90,97,107,124,125,126,128,133,135,136,140,145,150,153,155,158,159,163,166,170,171,172,182,187,192,208,211,213,216,217,219],"[[\"":84,"[\"":[33,76,84,88,128,131,166,168,171,187,208,211,213,217],"[\u8a9e":84,"[a":150,"[admin":[37,39,40],"[api":33,"[apt":39,"[args":145,"[backslash":170,"[benchmark":41,"[bernard":33,"[bindings":33,"[cmake":33,"[column":41,"[dat":[38,39],"[dd":181,"[deb":[33,37,39,40,41],"[doc":[33,37,38,39,40,41],"[dump":[39,40,41],"[element":[76,171],"[example":[33,41],"[fedora":[39,41],"[geo":[37,40],"[github":41,"[gqtp":40,"[grn":33,"[grntest":37,"[groonga":[12,33,37,39,41],"[header":[79,83,86,87,90,91,92,93,94,97,99,101,102,103,107,109,112,113,114,115,116,117,118,119,122,123,125,126,127,132,134,135,137,138,139,140],"[hh":33,"[http":[33,39,40,41],"[httpd":[33,39,40,41],"[index":41,"[info":181,"[key":33,"[label":[33,110,128],"[label1":[41,110,128],"[label2":[110,128],"[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,128],"[normalizer":41,"[number":100,"[os":41,"[output":38,"[pat":39,"[patricia":[],"[php":[39,41],"[pkg":[37,39],"[plugin":[33,41],"[power8":41,"[rpm":[33,37,38,39,40,41],"[sharding":33,"[snippet":[41,166],"[solaris":39,"[space":170,"[suggest":[38,39,40],"[table":40,"[tag":[110,128],"[test":39,"[token":40,"[tokenizer":[39,40],"[travis":40,"[warning":181,"[windows":[33,37,39,40,41],"[yum":39,"[{":[147,199],"\"#":37,"\"#\"":146,"\"#{":171,"\"%":181,"\"'":[33,39,40,41,76,86,107,128,163,170,171,181,206,208],"\"(":[40,220],"\")":[33,39,40,41,53,124,153,154,155,157,161,163,164,171,213,221],"\"*":39,"\",":[33,40,44,76,79,84,86,88,90,91,94,97,98,100,110,116,117,124,127,128,131,133,134,135,136,140,145,146,147,153,155,158,159,160,161,163,164,166,167,168,170,171,172,174,181,182,183,184,187,188,190,192,205,208,211,212,213,214,216,217,218,219,220,221],"\"-":[37,155],"\".":[171,197,212],"\"/":[88,90,133,135,145,193,221],"\":":[33,44,76,80,84,86,90,97,98,100,107,108,110,111,113,114,116,124,125,126,127,128,130,131,135,136,138,139,140,145,146,147,153,155,158,159,160,161,163,164,167,168,170,171,172,174,177,178,181,182,183,184,187,188,190,192,193,199,205,211,212,213,214,216,217,218,219,220,221],"\";":[146,147,199],"\"<":[40,158,159],"\">":[158,159,166,178],"\"?":[128,178],"\"@":217,"\"[":[39,91,94,110,117,134,181],"\"\"":[38,86,91,92,167,171,181,195],"\"\\":[33,181],"\"\\\\":181,"\"\\n":33,"\"\u3001":[187,212],"\"\u3002":41,"\"\u308d\u3086\u304d":219,"\"\u30df\u30ea":171,"\"\u5f37":193,"\"\u672c":193,"\"\u8a9e":193,"\"\uff09":[34,187,211,221],"\"]":[33,76,88,91,92,93,98,110,128,145,163,166,168,171,187,208,213,214,217],"\"_":[40,44,76,79,86,88,90,97,98,100,110,116,128,131,135,136,140,147,153,155,160,161,163,164,167,168,170,171,172,174,177,181,182,183,184,187,188,190,192,199,208,211,212,213,214,216,217,218,219,220,221],"\"a":[41,128,138,167],"\"ab":189,"\"alice":[116,170],"\"always":108,"\"apple":174,"\"application":37,"\"auto":108,"\"b":[128,167],"\"black":174,"\"blank":174,"\"block":211,"\"book":171,"\"c":[128,167],"\"canceled":124,"\"co":189,"\"color":174,"\"complete":189,"\"content":[128,170,171,192],"\"correction":189,"\"created":110,"\"d":193,"\"db":116,"\"ddl":41,"\"double":171,"\"e":[131,138,187,193],"\"element":76,"\"ellip":156,"\"ellipsoid":156,"\"engine":[187,188,190],"\"flower":211,"\"fulltext":138,"\"good":[110,128,171],"\"gr":132,"\"gronga":189,"\"groonga":[76,98,128,132,166,167,171,189],"\"h":138,"\"hello":[136,192],"\"http":76,"\"i":[79,110,128,170,171,172,192,216,217],"\"is":211,"\"k":213,"\"key":116,"\"keyword":128,"\"label":128,"\"localhost":205,"\"message":[181,183,184],"\"monkey":211,"\"mroonga":[76,98,128,167,171],"\"mysql":[76,189],"\"n":[79,110,116,128,130,147,170,171,205,214,218],"\"name":[116,164],"\"never":108,"\"no":39,"\"null":39,"\"o":193,"\"popular":128,"\"pp":41,"\"rect":[39,156],"\"rectangle":[39,155,156],"\"requires":39,"\"roonga":189,"\"ruby":76,"\"s":[131,138,187,188,193],"\"saerch":188,"\"say":171,"\"se":187,"\"sea":187,"\"search":[170,187,188,190],"\"sequence":[131,187,188,190],"\"serach":188,"\"service":188,"\"sound":188,"\"sphere":156,"\"sphr":156,"\"starttime":[80,178],"\"sug":189,"\"suggest":189,"\"t":[138,193],"\"table":[116,145],"\"tags":76,"\"text":37,"\"theater":220,"\"theatre":220,"\"timestamp":107,"\"tritonn":128,"\"type":131,"\"unknown":53,"\"uptime":178,"\"utf":53,"\"value":128,"\"vector":40,"\"version":178,"\"visual":8,"\"web":[188,190],"\"weight":211,"\"x":[40,41,171],"\"xxx":40,"\"yyyy":171,"\"}":[44,86,97,98,100,107,108,110,111,116,128,131,147,161,163,164,167,168,170,171,172,174,177,181,183,184,187,188,190,192,199,211,212,213,216,219,221],"\\%":31,"\\'":[145,170],"\\(":170,"\\[(":181,"\\\"":[54,100,158,159,160,166,167,181,206],"\\\"a":167,"\\\"}":100,"\\\\":[33,54,158,163,167,181],"\\\\\"":163,"\\\\\\":[33,181],"\\\\z":181,"\\a":[33,181,193],"\\ahello":33,"\\ahost":181,"\\bin":31,"\\groonga":31,"\\n":181,"\\u":193,"\\z":[181,193],"\u2026\uff09":188,"\u2192id":191,"\u25a1\u25a1":10,"\u25cb\u25cb":10,"\u3001 \"":161,"\u3001#":217,"\u3001$":12,"\u3001'":[41,53,145,164,171,195,211],"\u3001(":[64,65,146,153,195],"\u3001-":[35,146,195],"\u3001.":[14,17],"\u3001/":[214,218],"\u3001:":146,"\u3001>":89,"\u3001[":214,"\u3001\"":[37,39,40,160,161,167,187,188,189,190,195,214,217,220],"\u3001\u00d7":10,"\u3001\u300c":[34,128,145,177,182,183,184,187,193,206,208,212,213,221],"\u3001_":214,"\u3001c":214,"\u3002#":[35,37,217],"\u3002'":61,"\u3002(":[11,12,26,46,62,65,97,100,145,146,203,216],"\u3002)":[65,97,128,146,216],"\u3002-":[28,56,65],"\u3002.":17,"\u3002:":[10,12,14,17,33,37,78,80,84,87,91,92,93,95,98,100,101,102,103,114,116,117,123,124,127,130,131,133,139,140,143,145,146,147,148,159,171,182,183,184,187,188,189,190,194,199,206,208,209,214],"\u3002[":[33,39,40,41,214],"\u3002\"":[40,41,161,188,202,208,212,217,218],"\u3002\u00d7":10,"\u3002\u2193":145,"\u3002\u3002":176,"\u3002\u300c":[41,94,110,113,117,128,132,136,138,170,171,181,184,193,213,216],"\u3002\u300d":208,"\u3002\u3044":11,"\u3002\u3044\u304f\u3064\u304b":181,"\u3002\u3044\u307e":38,"\u3002\u3056\u3063\u304f\u308a":76,"\u3002\u3057\u304b\u3057":[0,6,7,8,23,37,76,90,128,135,155,172,174,182,184,188,193,195,199],"\u3002\u3057\u304b\u3082":198,"\u3002\u3059":[146,172],"\u3002\u3059\u3050":147,"\u3002\u3059\u3079\u3066":[14,17],"\u3002\u3064\u307e\u308a":[46,128,141,170,183,193,214,220],"\u3002\u3069\u308c":150,"\u3002\u307e\u305a":208,"\u3002\u307e\u305f":[0,11,78,99,128,144,145,146,148,171,180,184,188,195,205,211,214,221],"\u3002\u307e\u3060":41,"\u3002\u30ad\u30fc":[44,127,128,141],"\u3002\u30bf\u30b0":[76,110,128,159,213],"\u3002\u30d0\u30b0":19,"\u3002\u30df\u30ea":211,"\u3002\u30ed\u30b0":[132,147],"\u3002\u4f8b":[8,33,61,117,132],"\u3002\u5024":153,"\u3002\u7701\u7565\u53ef\u80fd":158,"\u3002\uff08":[17,21,33,35,37,51,65,84,99,108,110,124,128,145,159,166,169,170,171,176,187,188,190,191,193,194,195,206],"\u3002\uff09":[17,21,33,34,35,37,65,99,108,110,116,124,128,132,159,166,170,171,176,188,190,191,193,206],"\u3002_":[74,214],"\u3002adjuster":41,"\u3002amazon":128,"\u3002api":[158,159,166,169],"\u3002apt":12,"\u3002ascii":[170,171],"\u3002bash":33,"\u3002blogs":208,"\u3002buf":48,"\u3002c":[0,16,82],"\u3002callback":11,"\u3002centos":33,"\u3002column":[11,48,214],"\u3002command":78,"\u3002cpu\u30b3\u30a2":199,"\u3002ctrl\u30ad\u30fc":214,"\u3002cursor":65,"\u3002db":[11,37,51,205,214],"\u3002debian":14,"\u3002dump":98,"\u3002eclipse":17,"\u3002ecmascript":128,"\u3002ftp":146,"\u3002functions":14,"\u3002gdb":[6,7,14],"\u3002geopoint":217,"\u3002git":12,"\u3002gnr":169,"\u3002gnu":5,"\u3002google":170,"\u3002gqtp":[82,144,205],"\u3002grn":[11,169],"\u3002groonga":[0,3,24,25,26,28,30,31,33,39,40,41,44,69,72,78,87,128,146,147,170,171,178,181,185,187,191,194,202,214,216,218],"\u3002hook":56,"\u3002host":205,"\u3002html":158,"\u3002http":[33,40],"\u3002id":51,"\u3002int":40,"\u3002iptables":218,"\u3002jis":177,"\u3002json":100,"\u3002key":[64,206],"\u3002keys":64,"\u3002linux":194,"\u3002lz4":33,"\u3002make":146,"\u3002max":65,"\u3002memcached":33,"\u3002messagepack":[28,79],"\u3002min":65,"\u3002mroonga":[0,61],"\u3002mruby":33,"\u3002munin":[24,25,26,30],"\u3002mysql":[24,25,26,30,185],"\u3002n":[113,138,208],"\u3002name":[48,51,64],"\u3002null":[51,52,64],"\u3002obj":61,"\u3002offset":56,"\u3002optarg":52,"\u3002os":94,"\u3002output":[41,98],"\u3002pcre":147,"\u3002point":[156,157],"\u3002post":199,"\u3002rk":177,"\u3002rroonga":169,"\u3002ruby":181,"\u3002run":14,"\u3002scan":14,"\u3002set":146,"\u3002sql":128,"\u3002squeeze":14,"\u3002table":[64,68,97],"\u3002tag":213,"\u3002timeout":61,"\u3002tokendelimit":190,"\u3002travis":21,"\u3002tsv":[79,180],"\u3002unix":130,"\u3002utf":[40,174],"\u3002value":[61,74],"\u3002video":213,"\u3002windows":5,"\u3002xml":79,"\u300c#":35,"\u300c,":98,"\u300c\"":145,"\u300c\u25cb":[33,109],"\u300c\u30e9\u30d9\u30eb":128,"\u300c\u4e8c":177,"\u300c\u5024":[127,132],"\u300c\u5e74":33,"\u300c\u5f0f":54,"\u300c\u6771\u4eac\u90fd":208,"\u300c\u697d\u3057":206,"\u300c\u697d\u3057\u3044":206,"\u300c\uff76":174,"\u300ca":182,"\u300calice":217,"\u300cbill":206,"\u300cbilliard":206,"\u300cbob":217,"\u300ccharlie":217,"\u300ccomments":217,"\u300cgrand":217,"\u300cgroonga":[41,128,169,194],"\u300chello":128,"\u300cnew":217,"\u300cnihon":187,"\u300cnippon":187,"\u300cpopular":128,"\u300csenna":128,"\u300cthe":182,"\u300cthey":[182,183,184],"\u300cusers":217,"\u300cv":12,"\u300d:":174,"\u300d\u3001":[41,213,217],"\u300d\u3002":169,"\u300d\uff08":[98,128,206],"\u3042\u3044\u307e\u3044":132,"\u3042\u304d":219,"\u3042\u304d\u3089":41,"\u3042\u304f":47,"\u3042\u3052\u308b":[],"\u3042\u305f\u308a":[35,37],"\u3042\u3063":[12,17,26,39,40,48,61,64,74,78,100,107,128,131,146,171,181,199,213],"\u3042\u3068":[12,17,94,194],"\u3042\u306a\u305f":[2,6,7,8,12,33,181,182,183,184],"\u3042\u307e\u308a":[10,64,216],"\u3042\u3089\u304b\u3058\u3081":[12,26,195],"\u3042\u3089\u3086\u308b":117,"\u3042\u3089\u308f\u3057":220,"\u3042\u308a":[],"\u3042\u308b":[],"\u3042\u308b\u3044":[0,11,26,41,48,63,64,78,132,134,147,156,157,161,170,171,194,205],"\u3042\u308c":[6,7,12,44,47,132,146,153,161,171,172,208],"\u3042\u308c\u3053\u308c":10,"\u3042\u308f\u305b":[185,194],"\u3042\u308f\u305b\u308b":39,"\u3044\u3044":[2,10],"\u3044\u3044\u306d":[110,128,170,171],"\u3044\u3046":128,"\u3044\u304d":[10,12,214],"\u3044\u304f":[],"\u3044\u304f\u3064":[3,181],"\u3044\u304f\u3064\u304b":[1,2,8,11,12,14,26,28,33,40,74,93,98,99,107,109,110,112,113,116,124,128,136,138,141,152,164,170,171,174,181,182,185,193,194,198],"\u3044\u304f\u3089":0,"\u3044\u305a\u308c":[74,78,195],"\u3044\u3063":[130,181],"\u3044\u3064":187,"\u3044\u307e":126,"\u3044\u307e\u305b":[6,24,40,41,79,110,128,131,132,138,147,170,171,176,180,181,182,183,184,185,191,193,198,199],"\u3044\u308b":[],"\u3044\u308c":[33,39,61,193,211],"\u3044\u308d\u3044\u308d":[],"\u3044\u308f\u3086\u308b":213,"\u3044b":[206,208],"\u3046\u3048":[37,39],"\u3046\u3061":[11,33,37,39,48,61,64,65,78,84,130,141,153,176],"\u3046\u3061\u3044":145,"\u3046\u3063\u304b\u308a":40,"\u3046\u307e\u304f":[],"\u304a\u3044":[0,12,14,17,37,40,48,61,64,74,211,214],"\u304a\u304b":28,"\u304a\u304b\u3052":181,"\u304a\u304b\u3057":35,"\u304a\u304b\u3057\u304f":35,"\u304a\u304d":[0,12,44],"\u304a\u304d\u307e\u3057\u3087":211,"\u304a\u3051":[128,177],"\u304a\u3051\u308b":[0,32,39,40,170,195,211,213,214],"\u304a\u3053":[0,211],"\u304a\u3053\u306a\u3063":214,"\u304a\u3055\u3089\u3044\u3057":10,"\u304a\u3059\u3059\u3081":[161,199],"\u304a\u3059\u3059\u3081\u3057":[12,170,171,203],"\u304a\u3070":[33,34,37,40],"\u304a\u3070\u305f":[33,37,40],"\u304a\u3088":46,"\u304a\u3088\u3073":[0,12,28,39,62,145,211,214],"\u304a\u3089":12,"\u304a\u308a":[41,221],"\u304a\u5f85\u3061":2,"\u304a\u77e5\u3089":[],"\u304a\u9858\u3044":[10,146],"\u304b\u3048\u308b":[33,167],"\u304b\u304b\u3063":79,"\u304b\u304b\u308a":[143,170,171,172,193],"\u304b\u304b\u308b":[64,124,143,172,214],"\u304b\u304e\u308a":146,"\u304b\u3051":[40,85],"\u304b\u3051\u308b":[10,147],"\u304b\u3057\u3089":117,"\u304b\u305a":[39,41],"\u304b\u305a\u3072\u3053\u3055\u3093":39,"\u304b\u305f":33,"\u304b\u3061":[128,206],"\u304b\u3064":[40,65,128,143,171,206],"\u304b\u3069":[33,41,51,98,99,109,110,115,117,128,131,143,147,153,156,157,170,208,209,214,221],"\u304b\u3069\u3046":[28,33,82,91,123,127,140,153,164,167,208],"\u304b\u306a\u308a":41,"\u304b\u307e\u3044":214,"\u304b\u3082":[10,33,41,66,79,90,101,102,107,113,114,115,124,125,126,127,130,134,135,139,170,171,181,182,183,184,216],"\u304b\u3089":[],"\u304b\u308f\u308a":[26,33,41,208],"\u304by":40,"\u304c\u3042\u308a":[12,19,128,148,155,180,185,192],"\u304c\u3042\u308c":185,"\u304c\u3044":44,"\u304c\u3053\u306e":170,"\u304c\u3059":[64,115],"\u304c\u3061":193,"\u304c\u3063":[],"\u304c\u3064\u3044":[35,39,66,76,128,185,191],"\u304c\u3069":[127,194],"\u304c\u3072\u3068\u3064":180,"\u304c\u308f\u304b\u308a":[86,160,193,217],"\u304c\u308f\u304b\u308b":155,"\u304c\u308f\u304b\u308c":128,"\u304f\u3060":[0,2,6,7,8,12,17,24,25,26,27,28,29,30,31,33,39,40,41,46,60,76,81,82,83,86,87,88,90,91,92,93,94,97,99,101,102,103,108,110,111,113,114,115,116,117,118,119,122,123,124,125,126,127,128,130,131,132,134,135,136,137,138,139,140,146,147,148,155,160,163,164,167,168,170,171,177,180,181,191,193,194,195,197,199,203,208,209,211,212,214,217,218,219,221],"\u304f\u308c":10,"\u304f\u308c\u308b":[0,16,17,94,99],"\u3050\u3088\u3046":155,"\u3050\u308b":[33,169,170,171],"\u3050\u308b\u3093":[170,171,213],"\u3053\u3046":10,"\u3053\u3046\u3059\u308c":10,"\u3053\u3053":[12,21,79,101,128,131,170,171,174,180,208,211,214,217,221],"\u3053\u3053\u3067":12,"\u3053\u3068":[],"\u3053\u306a\u3044":[33,41],"\u3053\u306a\u308c":107,"\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,47,54,64,65,66,70,76,77,79,81,82,83,86,87,88,90,91,92,93,94,99,100,101,102,103,107,108,109,110,111,112,113,114,115,116,117,118,119,122,123,124,125,126,127,128,130,132,134,135,136,137,138,139,140,143,145,146,147,152,153,155,156,158,159,163,164,166,167,168,170,171,172,175,177,178,180,181,182,183,184,185,186,187,188,190,191,193,194,198,199,205,206,208,211,212,213,214,215,216,217,220,221],"\u3053\u308c":[0,6,7,8,11,12,16,17,28,33,37,39,40,41,44,47,52,69,76,83,86,87,90,101,102,103,107,108,109,110,112,115,118,119,122,123,124,128,132,135,138,147,153,155,159,163,166,167,170,171,172,174,180,181,182,183,184,185,187,188,189,190,191,193,194,199,205,206,208,209,211,212,216,217,220,221],"\u3053\u308c\u3089":[3,24,25,26,28,29,30,39,40,74,76,99,108,109,110,118,119,122,128,141,147,148,155,169,170,171,174,178,181,182,185,189,190,191,199,208,212,213,214,217],"\u3054\u3068":[],"\u3054\u307f":[10,40],"\u3054\u3089\u3093\u304f":13,"\u3054\u89a7\u304f":[14,214],"\u3055\u3044":[0,2,6,7,8,12,14,17,24,25,26,27,28,29,30,31,33,39,40,41,46,60,76,81,82,83,86,87,88,90,91,92,93,94,97,99,101,102,103,108,110,111,113,114,115,116,117,118,119,122,123,124,125,126,127,128,130,131,132,134,135,136,137,138,139,140,146,147,148,155,160,163,164,167,168,170,171,177,180,181,191,193,194,195,197,199,203,208,209,211,212,214,217,218,219,221],"\u3055\u304d":211,"\u3055\u305b":10,"\u3055\u307e\u3056\u307e\u306a":[],"\u3055\u3089":216,"\u3055\u3089\u306b":[0,33,41,76,78,189,191,213,214],"\u3055\u3093":[6,7,17,33,35,36,37,38,39,40,41,107,109,110,112,128,132,134,136,138,166,181,184,189,194,199,212],"\u3057\u3044":[206,208],"\u3057\u3046\u308b":41,"\u3057\u304b":[17,33,41,44,109,110,128,132,147,170,171,181,183,184,193,199,211,216],"\u3057\u304b\u3057":[17,110,117,128,171,180,181,184,193,194,199,206,208,216],"\u3057\u304d\u308c":39,"\u3057\u304f":40,"\u3057\u3064\u3064":14,"\u3057\u3066":[10,12,14,17,30,35,39,40,64,128,147,208,212,213,214],"\u3057\u306a\u3044":33,"\u3057\u307e":10,"\u3057\u307e\u3044":[10,134,146,183,188,208,211,219],"\u3057\u307e\u3046":[0,10,12,33,35,37,39,40,41,134,143,193],"\u3057\u307e\u3057":40,"\u3057\u307e\u3057\u3087":[76,107,134,182,183,184,193,220],"\u3057\u307e\u3059":[24,110,128,170,171,189,206,217],"\u3057\u307e\u305b":[10,28,110,128,147,187],"\u3057\u307e\u3063":41,"\u3057\u3084\u3059\u304f":39,"\u3057\u3088":[11,37,40,46,51,59,90,91,100,135,155,172,211],"\u3057\u308a":10,"\u3057\u308c":[10,33,41,66,79,90,101,102,107,113,114,115,124,125,126,127,130,134,135,139,170,171,181,182,183,184,216],"\u3058\u304d":166,"\u3059\u304e\u307e\u305b":213,"\u3059\u304e\u308b":76,"\u3059\u304f":167,"\u3059\u3050":[0,124,199],"\u3059\u3053\u308c\u3089":128,"\u3059\u3067":[12,41,66,90,135,138,172,177,194,206],"\u3059\u306a\u308f\u3061":211,"\u3059\u3079":[11,33,37,41,78,85,86,98,99,102,111,123,128,134,135,138,140,143,146,147,171,187,191,193,194,199,205,217],"\u3059\u3079\u304d":11,"\u3059\u3079\u3066":[28,33,35,37,39,41,44,64,76,78,81,86,88,90,99,128,135,138,146,147,153,171,181,192,193,194,212,214],"\u3059\u3080":107,"\u3059\u308b":[],"\u3059\u308b\u304b":212,"\u3059\u308c":[0,12,33,64,118,122,128,146,153,158,170,171,193,212,214],"\u305a\u3064":[145,146,194,216],"\u305a\u306b":76,"\u305a\u308c":[0,11,64,78,87,100,104,105,145,155,195,205,211],"\u305b\u3044":[40,41],"\u305b\u3044\u305c\u3044":132,"\u305b\u305a":103,"\u305b\u306a":[170,171],"\u305b\u308b":[0,11,14,132,148,158,159,163,164,203],"\u305b\u308c":[0,86],"\u305d\u3046":[10,21,51,115,124,127,153,161,171],"\u305d\u3053":[12,208,211],"\u305d\u3053\u306b":133,"\u305d\u3057\u3066":[0,128,138,166,211,212,216,217],"\u305d\u3061\u3089":28,"\u305d\u306e":[],"\u305d\u306e\u307e\u307e":12,"\u305d\u306e\u3088\u3046":97,"\u305d\u306e\u5f8c":[44,51,128,171],"\u305d\u306e\u969b":12,"\u305d\u308c":[11,12,17,26,31,33,35,58,61,65,67,88,110,128,132,147,160,168,170,171,181,190,193,195,206,208,211,212,214,216,220],"\u305d\u308c\u304b\u3089":[76,128],"\u305d\u308c\u305e\u308c":[6,7,8,11,12,14,28,41,61,64,79,107,128,132,138,145,148,164,171,178,191,205,206,208,211,212,214,216,221],"\u305d\u308c\u3086\u3048":[170,211],"\u305d\u308c\u3089":[33,44,46,48,66,87,99,128,134,141,144,180,181,199],"\u305d\u308d\u305d\u308d":214,"\u305d\u3093\u306a":[28,132],"\u305e\u3044":110,"\u305e\u308c":[11,12,58,128,171,190],"\u305f\u3044":[],"\u305f\u304b":[33,37,93,101,102,103,124,128,188],"\u305f\u304b\u3063":[188,220],"\u305f\u304f":[6,7,17,33,37,40,66,107,109,110,112,128,132,134,136,138,166,181,184,189,194,199,212],"\u305f\u3051\u3069":128,"\u305f\u3055\u3093":[33,34,37,40],"\u305f\u3059\u3079\u3066":128,"\u305f\u3060":[26,76],"\u305f\u3060\u3051":39,"\u305f\u3060\u3057":[33,34,37,40,41,65,74,87,109,130,145,148,170,171,181,206],"\u305f\u3061":185,"\u305f\u3068\u3048":208,"\u305f\u3069\u3063":217,"\u305f\u3069\u308b":213,"\u305f\u3070\u304b\u308a":172,"\u305f\u3073":[12,78,146,221],"\u305f\u3076\u3093":28,"\u305f\u307b\u3046":128,"\u305f\u307e\u307e":199,"\u305f\u3081":[],"\u305f\u3081\u3057":221,"\u305f\u3089":[10,12,17,28,33,35,41,51,66,69,94,101,102,103,123,124,128,134,137,143,153,164,167,171,183,187,193,199,203],"\u305f\u308a":[0,3,10,33,41,56,127,128,132,169,181,191,195,203],"\u3060\u3044":[37,41],"\u3060\u304b\u3089":[110,128],"\u3060\u3051":[],"\u3060\u3055\u3044":[0,3,12,13,14,17,19,21,23,28,29,30,33,39,41,76,79,86,108,110,115,117,128,130,132,147,163,168,170,171,174,180,181,185,187,199,205,212,214],"\u3060\u3057":[37,146],"\u3060\u3063":[33,39,64,78,128,171,208],"\u3060\u3068":10,"\u3061\u3083\u3093":213,"\u3064\u3044":217,"\u3064\u304b":36,"\u3064\u304d":[32,41,76,83,87,125,126,128,137,160,180,183],"\u3064\u3051":155,"\u3064\u3051\u308b":[10,41,76,128,202,219],"\u3064\u3064":[164,208],"\u3064\u3065\u3044":217,"\u3064\u3076\u3084\u304d":172,"\u3064\u307e\u308a":[12,33,94,107,128,138],"\u3065\u3051":[],"\u3065\u3051\u308b":44,"\u3066\u304d":82,"\u3066\u304f":14,"\u3066\u307f\u307e\u3057\u3087":221,"\u3067\u3044":[33,128,171,211,217],"\u3067\u3044\u3046":[174,212],"\u3067\u304d":[],"\u3067\u304d\u308b":[],"\u3067\u304f":[3,21,23,41,76,128,132,163,171,180],"\u3067\u3053\u306e":194,"\u3067\u3057":[29,33,41,171,182,211],"\u3067\u3057\u304b":[7,193],"\u3067\u3057\u3087":[0,6,7,20,28,41,143,171,172,212],"\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,44,46,47,48,50,51,52,54,57,61,62,64,66,68,69,72,74,76,77,78,79,80,81,82,83,84,86,87,88,90,91,92,93,94,97,98,99,100,101,102,103,107,108,109,110,111,112,113,114,115,116,117,118,119,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,150,151,153,155,156,158,159,160,161,163,164,166,167,168,169,170,171,172,174,176,177,178,180,181,182,183,184,185,187,188,189,190,191,192,193,194,195,198,199,202,203,205,206,208,209,211,212,214,215,216,217,218,220,221],"\u3067\u3059\u306d":10,"\u3067\u3059\u3079\u3066":141,"\u3067\u305d\u3046":108,"\u3067\u3064\u306a\u3052\u308b":128,"\u3067\u3069":[108,131],"\u3067\u3069\u3053":82,"\u3067\u306a\u3051\u308c":[99,117,127,170,171],"\u3067\u306b":[115,118,122,172,208],"\u3067\u306e":[41,79,166,193],"\u3067\u306f":41,"\u3067\u307e\u3068\u3081":180,"\u3067\u307f":0,"\u3067\u3082":[0,12,14,17,19,23,24,25,26,28,30,31,33,37,39,40,41,44,82,87,99,128,132,146,147,159,164,166,167,177,181,184,185,187,191,193,205,206,208,214,216,218,221],"\u3067\u3082\u3059\u3079\u3066":[33,193],"\u3067\u3082\u3063\u3068\u3082":77,"\u3067\u3088\u308a":41,"\u3067\u5024":[145,214],"\u3068\u3044\u3044":181,"\u3068\u3044\u3046":[0,9,10,12,14,17,28,33,37,39,40,41,44,54,76,78,81,84,94,99,101,102,103,110,113,115,116,117,118,119,122,123,124,125,128,130,131,132,134,137,138,141,146,147,148,155,159,163,164,166,167,169,170,171,174,178,180,181,182,183,184,185,187,188,191,192,193,194,195,199,205,206,208,211,212,213,214,216,217,218,221],"\u3068\u3044\u3051":[33,107,128,132,205,209],"\u3068\u3044\u3063":[26,33,39,40,41,76,107,109,110,112,117,128,155,169,170,171,191,199,221],"\u3068\u3048":[0,28,33,41,44,53,54,78,86,90,110,116,127,128,130,135,159,166,177,181,182,183,184,193,194,206,221],"\u3068\u304a\u308a":[32,146,211,212,221],"\u3068\u304d":[0,6,7,9,10,11,12,24,25,26,27,28,30,33,34,35,37,39,40,41,44,51,58,62,64,65,66,76,79,80,86,87,90,94,99,101,108,109,115,117,118,119,122,123,127,128,131,132,134,135,137,138,145,147,155,163,164,166,169,170,171,172,174,177,180,181,185,187,188,189,190,193,194,195,199,205,206,211,212,213,214,217,218],"\u3068\u304d\u3057\u304b":94,"\u3068\u3053\u306e":[128,181,187,194],"\u3068\u3053\u308d":[16,17,33,38,87,110,125,126,163,171,193],"\u3068\u3053\u308d\u3044\u304f\u3064\u304b":76,"\u3068\u3055\u3089\u306b":[6,7],"\u3068\u3057":[11,40,41,44,51,90,126,128,135,144,145,146,147,155,171,172,180,187,188,189,190,193,195,211,213,216],"\u3068\u3057\u3066":[],"\u3068\u3057\u307e\u3057\u3087":[216,220],"\u3068\u3057\u307e\u305b":46,"\u3068\u3059\u3050":172,"\u3068\u3059\u3079\u3066":[39,99,108,123,128,143],"\u3068\u3059\u308c":0,"\u3068\u305d\u306e":[78,81,183],"\u3068\u3063":147,"\u3068\u3064\u3044":221,"\u3068\u3066":[0,128,170,171,187,191,199],"\u3068\u3068":[16,17],"\u3068\u3068\u3082\u306b":211,"\u3068\u3069":[86,186],"\u3068\u306a\u3063":40,"\u3068\u306a\u308a":[159,166,170,199,218],"\u3068\u306e":[33,110,171],"\u3068\u307f":[40,128,148,170],"\u3068\u3082":[33,110,128,146,166,167,170,171,194,209,221],"\u3068\u3082\u3063\u3068":28,"\u3068\u3088\u3044":28,"\u3068\u308a\u3068\u3093":[170,171],"\u3068\u308b":61,"\u3068\u308f\u304b\u308a":185,"\u3068\u308f\u304b\u308b":12,"\u3069\u3046":[10,33,34,39,52,85,89,93,95,101,102,103,104,105,106,109,128,143,147,193,208,212],"\u3069\u3053":[28,37,41],"\u3069\u3061\u3089":[19,33,51,72,134,189,199,214,216],"\u3069\u3061\u3089\u304b":[159,166,170,171],"\u3069\u306e":[28,128,138,155,156,171,176,188,212],"\u3069\u308c":[79,88,99,101,102,103,108,123,127,128,132,134,163,193,199],"\u3069\u3093":133,"\u306a\u3044":[],"\u306a\u304a":[12,206],"\u306a\u304a\u3053\u306e":146,"\u306a\u304a\u3057":41,"\u306a\u304a\u3059":[41,123],"\u306a\u304b":10,"\u306a\u304b\u3063":[33,39,41,78,80,85,89,95,101,102,103,104,105,106,117,123,128,143,145,146,153,164,167,171,181,183,208,214],"\u306a\u304c\u3089":[0,12,39,110,128,138,193,214],"\u306a\u304c\u308b":39,"\u306a\u304e":167,"\u306a\u304f":[0,3,10,12,21,28,33,34,35,37,39,40,41,44,51,61,88,101,107,110,118,122,128,132,134,146,147,153,166,167,169,170,171,176,177,182,183,184,191,193,194,199,203,211,212,214,216,220],"\u306a\u3051\u308c":[21,28,39,47,48,51,54,59,61,64,72,76,82,86,87,88,90,100,107,110,124,128,132,135,145,146,147,153,160,161,163,167,168,170,171,180,181,182,183,184,211],"\u306a\u3055":[148,165],"\u306a\u3055\u3093":3,"\u306a\u3057":[],"\u306a\u3059":157,"\u306a\u305c":[6,7,8,33,44,86,94,99,110,116,128,132,137,143,163,170,171,174,177,181,182,183,184,187,188,192,193],"\u306a\u305f":[33,185],"\u306a\u3063":[0,6,7,8,10,12,14,33,35,37,38,39,40,41,76,78,79,84,94,101,107,128,138,170,171,183,185,187,194,199,203,208,211,214,216,217,218],"\u306a\u3068\u304d":0,"\u306a\u3069":[0,5,6,7,8,11,12,13,17,20,28,33,37,39,41,44,52,61,78,84,86,106,116,117,125,126,128,132,138,141,146,158,159,166,169,170,171,172,176,180,181,182,183,184,187,188,190,191,193,195,199,206,208,211,214,215,217,218],"\u306a\u306a\u3069":[170,171],"\u306a\u306b":[],"\u306a\u306b\u5bfe\u3057":[170,171],"\u306a\u306e":[33,187],"\u306a\u3073":33,"\u306a\u3082\u306e":[12,48,181],"\u306a\u3084\u308a\u304b\u305f":220,"\u306a\u3089":[6,7,8,11,14,21,24,25,26,30,33,39,40,41,44,48,52,61,64,76,78,86,94,97,99,102,107,109,110,112,116,120,127,128,130,132,137,143,145,146,147,160,163,168,170,171,174,177,181,182,183,184,187,188,192,193,194,209,216],"\u306a\u308a":[0,6,7,8,10,12,21,33,37,39,40,41,44,47,48,51,52,54,61,64,72,74,76,78,79,82,83,85,86,87,94,96,99,100,101,102,103,107,110,117,118,119,122,123,124,127,128,130,131,132,134,135,137,145,146,147,148,155,156,163,166,170,171,172,174,177,178,180,181,182,183,184,185,187,188,192,193,195,202,205,208,211,212,213,214,216,217,218,219,221],"\u306a\u308b":[0,10,11,12,17,23,24,25,26,28,30,31,33,34,35,36,39,40,41,51,52,61,66,85,87,96,97,98,99,101,102,103,123,127,128,132,134,145,146,147,153,156,157,161,163,164,166,170,171,172,185,190,194,195,208,211,212,214],"\u306a\u308c":78,"\u306a\u3093":78,"\u306b\u3042\u308a":[6,7,8,113,132],"\u306b\u3044\u304f\u3064\u304b":[33,40],"\u306b\u304a\u3044":[12,78,211],"\u306b\u304f\u3044":0,"\u306b\u304f\u3044\u304b":193,"\u306b\u304f\u304f":33,"\u306b\u304f\u308b":208,"\u306b\u3057":[33,40,41,44,108,128,163,170,171],"\u306b\u3059":208,"\u306b\u3059\u3050":172,"\u306b\u3059\u3079\u3066":86,"\u306b\u3059\u308b":199,"\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,44,46,58,61,65,76,77,78,79,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,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,143,152,154,155,156,157,159,162,164,165,167,170,177,180,181,182,183,184,185,187,188,190,193,194,195,197,199,205,206,209,211,212,214,215,217,221],"\u306b\u3064\u3051":171,"\u306b\u3064\u3076\u3084\u3051":10,"\u306b\u3064\u3076\u3084\u3051\u308b":10,"\u306b\u3066":[12,33,39,40,155],"\u306b\u3068\u3063":[10,33],"\u306b\u3068\u3063\u3066":[10,138,193],"\u306b\u3069":11,"\u306b\u3082":[128,181,206],"\u306b\u3088":39,"\u306b\u3088\u304f":182,"\u306b\u3088\u3063":[0,9,11,40,51,61,64,76,78,84,85,87,89,95,96,98,104,105,106,107,120,129,133,144,145,148,169,205,206,211,213,214],"\u306b\u3088\u3063\u3066":[0,14,40,51,74,78,208,211,214],"\u306b\u3088\u308a":[0,12,32,33,39,40,41,84,128,147,155,193,195,199,202,205,208,211,214,216,218,219],"\u306b\u3088\u308b":[],"\u306b\u5bfe\u3057":[0,11,12,33,34,39,40,41,56,61,64,76,86,87,110,118,122,124,128,131,140,143,144,148,167,170,171,181,183,193,206,212,213,214,216,220,221],"\u306b\u5bfe\u3057\u7570":164,"\u306b\u5bfe\u3059\u308b":[],"\u306b\u5bfe\u5fdc":[37,38,39,41,48,51,56,59,61,62,64,67,100,106,107,110,145,148],"\u306b\u5bfe\u5fdc\u4ed8\u3051":187,"\u306b\u5bfe\u8c61":37,"\u306b\u95a2\u3057":[11,33,40,51,146],"\u306b\u95a2\u3059\u308b":[],"\u306e\u3042\u3068":39,"\u306e\u3044":[0,11,64,78,100,104,105,145,155,195,205],"\u306e\u3044\u305a\u308c":[88,220],"\u306e\u3044\u305a\u308c\u304b":[63,64,67,156,157],"\u306e\u3046\u3061":[88,170],"\u306e\u304b":[206,217],"\u306e\u304b\u308f\u308a":41,"\u306e\u304f\u3089\u3044":194,"\u306e\u3059":94,"\u306e\u3059\u3079\u3066":[110,128,137,199],"\u306e\u305e\u3044":193,"\u306e\u3067":[0,1,10,12,17,21,31,33,37,39,40,41,79,86,99,107,109,110,125,126,128,132,147,148,153,155,164,166,167,180,187,194,199,203,206,208,209,211,214,216,217],"\u306e\u3067\u3057\u3087":[128,181],"\u306e\u3069\u3061\u3089":[128,171],"\u306e\u3069\u3061\u3089\u304b":[128,153,170,171],"\u306e\u3069\u308c":[132,150,187],"\u306e\u306b":[],"\u306e\u306b\u5bfe\u3057":51,"\u306e\u307b\u304b":[195,211],"\u306e\u307f":[],"\u306e\u307f\u3057\u304b":189,"\u306e\u3088\u3046":[33,40,41,44,47,88,107,128,132,141,163,169,170,171,181,182,193],"\u306f\u3042\u306a\u305f":6,"\u306f\u3044":211,"\u306f\u3044\u304f\u3064\u304b":[32,46,79,134,143,170,199],"\u306f\u3044\u3051":[51,61,97,102,143,171],"\u306f\u3044\u308f\u3086\u308b":33,"\u306f\u304d\u3063\u3068":181,"\u306f\u3053\u306e":[33,127,128,130,167,184,193,209],"\u306f\u3058\u307e\u308a":78,"\u306f\u3058\u3081":[],"\u306f\u3059\u3079\u3066":[83,91,92,93,94,99,100,101,102,103,115,116,117,123,125,126,127,128,130,132,134,136,137,138,147,159,169,171,174,183,184,193,214],"\u306f\u305a":[39,146,181,194],"\u306f\u305d\u306e":51,"\u306f\u3061\u3087\u3046":171,"\u306f\u3068":191,"\u306f\u3069":[128,132,187],"\u306f\u3069\u3061\u3089":199,"\u306f\u3069\u3061\u3089\u304b":[170,171],"\u306f\u306a\u304f":181,"\u306f\u307b\u3068\u3093\u3069":128,"\u306f\u307e\u305a":12,"\u306f\u307e\u3060":[110,184,199],"\u306f\u307e\u3068\u3081\u3066":12,"\u306f\u307f":3,"\u306f\u6708":[171,185],"\u3070\u3042":185,"\u3070\u3044\u3051":[21,28,39,48,51,54,59,61,64,72,76,86,88,90,99,110,117,128,132,135,147,163,167,170,171,180,181,182,183,184],"\u3070\u304b\u308a":33,"\u3070\u3053\u306e":33,"\u3070\u3059\u3079\u3066":193,"\u3070\u3069":44,"\u3070\u308c\u308b":35,"\u3072\u3053\u3055\u3093":[39,41],"\u3072\u3068\u3064":[39,154,170],"\u3072\u3089":[163,170,171,177,187,193],"\u3072\u308d":219,"\u3072\u308d\u3086\u304d":219,"\u3075\u306a\u3068":41,"\u3075\u308a":131,"\u3076\u3093":10,"\u3078\u3059\u3079\u3066":[33,86],"\u3078\u306e":[28,211],"\u3079\u304d":[6,7,8,12,33,61,88,109,117,123,171,174,205],"\u3079\u304f":214,"\u3079\u3066":[44,111,128,147,212],"\u3079\u30fc\u30b9":41,"\u307b\u3046":41,"\u307b\u304b":[0,211],"\u307b\u3057\u304f":128,"\u307b\u3068\u3093\u3069":[33,51],"\u307b\u3069":[131,132,143,193,203,211,214],"\u307e\u3057":[6,7,8,10,12,17,33,37,39,40,41,110,128,132,147,155,170,171,174,181,188,193,208,212,213,217],"\u307e\u3057\u3087":[110,128,155,213,214],"\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,49,51,52,53,54,56,58,59,60,61,62,63,64,65,66,67,68,69,70,72,74,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,197,198,199,202,203,205,206,208,209,211,212,213,214,215,216,217,218,219,220,221],"\u307e\u305a":[12,17,28,31,146,147,171,206,208,212,214,216,217,220],"\u307e\u305b":[0,6,7,10,12,17,28,33,37,39,40,41,44,46,47,48,51,54,58,59,61,64,65,66,69,70,72,74,76,79,81,82,83,86,87,88,90,91,92,93,94,97,99,100,101,102,103,106,107,108,109,110,111,113,114,115,116,117,120,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,143,145,146,147,153,155,159,163,164,166,167,170,171,172,174,176,180,181,182,183,184,185,187,188,189,191,192,193,194,195,197,199,203,205,206,208,209,211,212,214,216,218,220],"\u307e\u305f":[],"\u307e\u305f\u3044":[39,155,185],"\u307e\u305f\u3050":[],"\u307e\u3060":[37,40,41,78,107,110,125,126,128,130,131,166,171,182,185,205],"\u307e\u3064\u308f":40,"\u307e\u3067":[11,12,17,32,40,41,46,47,100,107,128,145,146,153,172,181,191,194,212,214,216,217,219],"\u307e\u3068\u3081":[],"\u307e\u3068\u3081\u3066":[0,12,211,212],"\u307e\u3068\u3081\u308b":147,"\u307e\u307e":[10,12,33,40,78,134,171,212],"\u307e\u307e\u3067":208,"\u307e\u308a":[33,128],"\u307e\u308d\u3086\u304d":219,"\u307e\u308f\u308a":3,"\u307f\u304c":11,"\u307f\u305f\u3059":217,"\u307f\u3066":221,"\u307f\u306a\u3055":11,"\u307f\u307e\u3057\u3087":[107,128,134,171,182,183,184,211,212,213,214,216,217,220,221],"\u3080\u308b":[170,171],"\u3080\u308b\u3093":[170,171],"\u3082\u3046":[39,51,99,147,154,172,211,216],"\u3082\u3046\u307e\u304f":28,"\u3082\u304d\u3061\u3093":147,"\u3082\u3053\u306e":99,"\u3082\u3057":[6,7,21,28,33,40,41,47,66,79,81,82,94,99,101,103,110,123,124,128,130,132,134,143,146,147,153,155,161,164,167,170,171,180,181,182,183,185,194,199],"\u3082\u3057\u3042":33,"\u3082\u3057\u304b\u3057":193,"\u3082\u3057\u304f":[12,26,33,39,40,41,64,65,107,109,112,147,153,158,159,166,170,171,195,205,209,211,216],"\u3082\u3057\u3053\u306e":209,"\u3082\u3057\u3054":39,"\u3082\u3057\u307e\u305b":66,"\u3082\u3057\u308c":[180,193],"\u3082\u3057\u4e00\u3064":47,"\u3082\u3057\u4f7f\u3063":102,"\u3082\u3057\u578b":127,"\u3082\u3057x":40,"\u3082\u3059":[118,122],"\u3082\u305b":143,"\u3082\u3061\u308d\u3093":[146,212],"\u3082\u3063\u3068":[6,7,128],"\u3082\u3063\u3068\u3082":[14,81],"\u3082\u3064":[33,97,212],"\u3082\u3069\u3061\u3089":184,"\u3082\u306e":[11,12,17,31,33,39,40,41,47,64,65,78,107,109,110,112,127,128,144,145,146,147,155,156,161,163,165,174,181,182,184,188,205,211,214,216],"\u3082\u3088\u308a":184,"\u3082\u3089\u3048":10,"\u3082\u3089\u3048\u308b":10,"\u3082\u3089\u3063":214,"\u3082\u308a":33,"\u3082\u308c\u308b":33,"\u3084\u304c":78,"\u3084\u3057":128,"\u3084\u3059\u3044":[33,34,128,159,166,169],"\u3084\u3059\u3044\u304b":180,"\u3084\u3059\u304f":[35,41,80],"\u3084\u3059\u304f\u3057":33,"\u3084\u305d\u306e":97,"\u3084\u307e":41,"\u3084\u307e\u3060":41,"\u3084\u307e\u306d":[40,41],"\u3084\u3081":[33,37,40,41],"\u3084\u3081\u307e\u3057\u3087":[182,183,184],"\u3084\u3089":12,"\u3084\u308b":[],"\u3086\u304d":219,"\u3086\u304d\u3072\u308d":219,"\u3088\u3044":[17,61,86,99,128,170,171,199,212,216],"\u3088\u3046":[],"\u3088\u304b\u3063":208,"\u3088\u304f":[76,99,110,128,153,181,193],"\u3088\u3063":221,"\u3088\u3063\u3066":[72,138,176,195,215,221],"\u3088\u3073":11,"\u3088\u308a":[6,7,11,23,28,33,35,37,39,40,41,65,76,94,128,132,146,155,156,161,170,171,172,180,181,182,183,184,187,193,194,195,206,208,211,212,216,217],"\u3089\u308c":[0,10,11,35,37,39,40,47,85,86,88,97,124,128,133,138,191,193,214,216,220],"\u3089\u308c\u308b":[0,11,39,40,41,48,65,181,206],"\u308c\u305a":78,"\u308c\u307e\u305b":[28,33,44,64,78,84,128,134,145,158,180,216],"\u308c\u308b":[0,9,11,12,14,17,28,33,37,39,40,41,44,47,51,56,62,65,66,74,76,78,83,84,106,107,108,110,113,124,125,126,128,131,132,134,145,146,153,155,161,166,167,172,174,176,181,187,188,190,191,193,195,205,206,208,214,221],"\u308f\u304b\u3061":206,"\u308f\u304b\u3063":143,"\u308f\u304b\u308a":[33,35,41,128,193,212],"\u308f\u304b\u308b":41,"\u308f\u304b\u308c":128,"\u308f\u3051":[117,128,136,138,171,187,194,211],"\u3092\u304a\u3053":217,"\u3092\u3054":14,"\u3092\u3054\u89a7\u304f":0,"\u3092\u3064\u3051":[107,128,170],"\u3092\u3064\u3051\u308b":[6,7,171],"\u3092\u308a":147,"\u3092\u901a\u3057":[145,214],"\u3093\u304c":[170,171],"\u3093\u3057":[102,115],"\u3093\u3057\u304d":169,"\u30a2\u30ab\u30a6\u30f3\u30c8":[2,12,41],"\u30a2\u30ab\u30a6\u30f3\u30c8groonga":10,"\u30a2\u30af\u30bb\u30b5":61,"\u30a2\u30af\u30bb\u30b5\u30fc":33,"\u30a2\u30af\u30bb\u30b9":[12,17,33,35,37,39,40,41,44,46,64,90,128,135,144,145,147,148,194,211,218],"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":[],"\u30a2\u30b8\u30e3\u30b9\u30bf\u30fc":[76,128],"\u30a2\u30c3\u30c8\u30de\u30fc\u30af":132,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":[],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u30a2\u30c9\u30ec\u30b9":[37,64,145,146,205,218],"\u30a2\u30ca\u30a6\u30f3\u30b9":12,"\u30a2\u30d4\u30fc\u30eb":12,"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":[0,20,57,171],"\u30a2\u30e1\u30ea\u30ab":155,"\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":[83,155,169,184],"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[41,65,110,128,132,138,181,188,193,206,208],"\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":39,"\u30a2\u30f3\u30ab\u30fc":[],"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":[74,87,132],"\u30a2\u30f3\u30de\u30c3\u30d7":[33,94],"\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\u30ea\u30e1\u30f3\u30c8":81,"\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":[33,40],"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[],"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":[0,146,169],"\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":178,"\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\u30c7\u30c3\u30af\u30b9\u30e2\u30b8\u30e5\u30fc\u30eb":33,"\u30a4\u30f3\u30dd\u30fc\u30c8":[],"\u30a6\u30a7\u30a4\u30c8":87,"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":[],"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6":[145,147,148],"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9":145,"\u30a8\u30a4\u30ea\u30a2\u30b9":[],"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8":35,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":[28,60,128,145],"\u30a8\u30b9\u30b1\u30fc\u30d7":[],"\u30a8\u30c7\u30a3\u30bf":17,"\u30a8\u30e9\u30fc":[],"\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":[39,41,214],"\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,78,79],"\u30a8\u30e9\u30fc\u30ec\u30dd\u30fc\u30c8":39,"\u30a8\u30e9\u30fc\u30ed\u30b0":203,"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":[28,33,34,41,51,53,54,171,174],"\u30a8\u30f3\u30b3\u30fc\u30c9":[35,148,174],"\u30a8\u30f3\u30b8\u30f3":[0,128,181,182,183,184,211,213],"\u30a8\u30f3\u30c8\u30ea":[47,48,110,128,167,170,171],"\u30a8\u30f3\u30c8\u30ea\u30fc":[33,128],"\u30aa\u30b9\u30b9\u30e1":[6,7,8,23,24,25,26,30,31,44,181,193],"\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea":35,"\u30aa\u30d5\u30bb\u30c3\u30c8":[33,39,128,131],"\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":[33,37],"\u30aa\u30fc\u30d0\u30fc\u30d8\u30c3\u30c9":[41,203],"\u30aa\u30fc\u30d7\u30f3":[33,37,39,40,47],"\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,107,217],"\u30ab\u30b9\u30b1\u30fc\u30c9":[],"\u30ab\u30b9\u30bf\u30de\u30a4\u30ba":[6,7,8,28,33,39,40,41,95,98,113,128,132,136,138,145,166,170,174,182,187,192,194,212],"\u30ab\u30b9\u30bf\u30e0":[66,137,147],"\u30ab\u30b9\u30bf\u30e0\u30b9\u30b3\u30a2\u30e9\u30fc":182,"\u30ab\u30b9\u30bf\u30e0\u30bb\u30ec\u30af\u30bf":39,"\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0":41,"\u30ab\u30bf\u30ab\u30ca":[65,131,163,174,177,187,193],"\u30ab\u30c6\u30b4\u30ea":[128,136,138],"\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":90,"\u30ab\u30e9\u30e0\u30d9\u30fc\u30b9":[170,171],"\u30ab\u30e9\u30e0id":64,"\u30ab\u30e9\u30e0n":167,"\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[12,17,146],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9":65,"\u30ab\u30ec\u30fc":206,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":206,"\u30ab\u30f3\u30b8":163,"\u30ab\u30f3\u30de":[98,100,171,212,214],"\u30ab\u30fc\u30bd\u30eb":[33,35,37,58,65],"\u30ab\u30fc\u30cd\u30eb":194,"\u30ab\u30fc\u30cd\u30eb\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[39,194],"\u30ad\u30e3\u30b9\u30c8":[35,38,39,40,170,183,184,217],"\u30ad\u30e3\u30c3\u30b7\u30e5":[],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":83,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":47,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30b5\u30a4\u30ba":147,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d2\u30c3\u30c8":40,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb":147,"\u30ad\u30e3\u30f3\u30bb\u30eb":[81,124],"\u30ad\u30e3\u30f3\u30bb\u30eb\u30ea\u30af\u30a8\u30b9\u30c8":124,"\u30ad\u30fc":[32,33,35,38,39,40,41,44,48,62,64,74,76,86,91,92,93,97,107,109,110,112,116,124,127,128,130,132,134,141,143,145,150,170,171,174,177,191,193,195,211,214],"\u30ad\u30fc\u30b5\u30a4\u30ba":[33,91,92,93,116,191],"\u30ad\u30fc\u30b5\u30dd\u30fc\u30c8":191,"\u30ad\u30fc\u30dc\u30fc\u30c9":128,"\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":147,"\u30af\u30a8\u30ea\u30d1\u30bf\u30f3":144,"\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":189,"\u30af\u30a8\u30ea\u30ed\u30b0":[37,39,187,188,190],"\u30af\u30a8\u30ea\u30fc":[],"\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":178,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":[],"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":83,"\u30af\u30a8\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8":128,"\u30af\u30a8\u30ea\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":199,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":[33,41,145,147],"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":145,"\u30af\u30a8\u30ea\u30fcapi":[77,82],"\u30af\u30a8\u30eaapi":33,"\u30af\u30a9\u30fc\u30c8":[113,138,170],"\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":120,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":[35,39,145,148],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea":[1,203],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":41,"\u30af\u30e9\u30c3\u30b7\u30e5":[33,35,37,39,40,41,90,99,102,135],"\u30af\u30e9\u30c3\u30b7\u30e5\u30d0\u30b0":33,"\u30af\u30ea\u30a2":[37,39,61],"\u30af\u30ea\u30a2\u30fc":33,"\u30af\u30ea\u30c3\u30af":128,"\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":128,"\u30b0\u30ed\u30fc\u30d0\u30eb":[39,46],"\u30b0\u30ed\u30fc\u30d0\u30eb\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":47,"\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc":176,"\u30b1\u30fc\u30b9":[],"\u30b2\u30c3\u30c8":2,"\u30b3\u30a2":[28,147,199],"\u30b3\u30b9\u30c8":[64,172],"\u30b3\u30cd\u30af\u30b7\u30e7\u30f3":33,"\u30b3\u30d4\u30fc":[12,33,39,44,48,56,61,64,86,90,98,135],"\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":181,"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":[31,39,146],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3":[28,78,79,146,198],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":178,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b7\u30a7\u30eb":170,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b9\u30bf\u30a4\u30eb":181,"\u30b3\u30de\u30f3\u30c9\u30ea\u30b9\u30c8":145,"\u30b3\u30de\u30f3\u30c9url":199,"\u30b3\u30df\u30c3\u30c8":[6,7,12],"\u30b3\u30e1\u30f3\u30c8":[],"\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8":216,"\u30b3\u30e1\u30f3\u30c8\u30ab\u30e9\u30e0":216,"\u30b3\u30e1\u30f3\u30c8\u30c6\u30fc\u30d6\u30eb":216,"\u30b3\u30e1\u30f3\u30c8id":217,"\u30b3\u30ed\u30f3":87,"\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8":[47,51,61,130,167],"\u30b3\u30f3\u30c6\u30f3\u30c8\u30bf\u30a4\u30d7":205,"\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\u30d4\u30e5\u30fc\u30bf\u30fc":177,"\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb":78,"\u30b3\u30fc\u30c9":[17,33,40,41,138],"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":11,"\u30b4\u30df":[35,37,84],"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":84,"\u30b5\u30a4\u30ba":[0,23,24,25,26,30,31,32,33,37,39,40,41,44,48,59,61,64,65,66,81,84,93,116,132,141,145,166,168,191,194,205,209,211],"\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":96,"\u30b5\u30a4\u30c8":[12,128,169,211,213],"\u30b5\u30a4\u30c9\u30e1\u30cb\u30e5\u30fc":128,"\u30b5\u30b8\u30a7\u30b9\u30c8":[],"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de":188,"\u30b5\u30d6\u30bb\u30c3\u30c8":[64,195],"\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,65,78,110,124,125,126,130,132,137,138,146,147,163,164,166,170,171,172,174,176,177,178,180,181,185,191,193,199,202,203,211,212,216,218],"\u30b5\u30de\u30ea":40,"\u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3":155,"\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":111,"\u30b5\u30f3\u30d7\u30eb\u30b9\u30ad\u30fc\u30de":[127,160,161,164,167,168,182,183,184],"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0":146,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9":129,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9":145,"\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":205,"\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9":33,"\u30b5\u30fc\u30d0\u30fcid":37,"\u30b5\u30fc\u30d3\u30b9":[0,21,39,40,41,194],"\u30b5\u30fc\u30d3\u30b9\u30b9\u30af\u30ea\u30d7\u30c8":40,"\u30b7\u30a7\u30a2":2,"\u30b7\u30a7\u30eb":[28,33,145,146,170,181],"\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":110,"\u30b7\u30e3\u30fc\u30c9":[33,110,111,185],"\u30b7\u30e3\u30fc\u30c9\u30ad\u30fc":110,"\u30b7\u30e3\u30fc\u30d7":132,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":[40,113,138,145,214],"\u30b7\u30f3\u30b0\u30eb\u30b9\u30ec\u30c3\u30c9\u30e2\u30c7\u30eb":137,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9":41,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9\u30a8\u30e9\u30fc":[33,41],"\u30b7\u30f3\u30d7\u30eb":[33,169,198,212],"\u30b7\u30f3\u30dc\u30eb":87,"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb":33,"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30b5\u30fc\u30c1":[33,172],"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30b9\u30ad\u30e3\u30f3":[33,163],"\u30b7\u30fc\u30b1\u30f3\u30b9":[187,188,190],"\u30b8\u30aa\u30b5\u30fc\u30c1":[],"\u30b9\u30ab\u30e9":48,"\u30b9\u30ab\u30e9\u30fc":[76,128],"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":[],"\u30b9\u30ab\u30e9\u30fc\u30c7\u30fc\u30bf":76,"\u30b9\u30ad\u30c3\u30d7":[33,40,41],"\u30b9\u30ad\u30e3\u30f3":[158,159],"\u30b9\u30ad\u30fc\u30de":[33,44,54,86,97,98,107,110,127,128,134,153,155,158,159,160,161,163,164,166,167,168,170,171,172,181,182,183,184,185,194,216],"\u30b9\u30af\u30ea\u30d7\u30c8":[],"\u30b9\u30b1\u30fc\u30d7":181,"\u30b9\u30b3\u30a2":[11,33,39,74,76,128,131,150,182,183,184,208,221],"\u30b9\u30b3\u30a2\u30e9\u30fc":[],"\u30b9\u30b3\u30a2\u30fc":[],"\u30b9\u30b3\u30a2\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":182,"\u30b9\u30b3\u30fc\u30d7":181,"\u30b9\u30bf\u30a4\u30eb":[],"\u30b9\u30bf\u30c3\u30af\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":40,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3":[145,148],"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30fc\u30f3\u30e2\u30fc\u30c9":33,"\u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc":31,"\u30b9\u30c6\u30c3\u30d7":[86,181],"\u30b9\u30c6\u30df\u30f3\u30b0":[41,192],"\u30b9\u30c6\u30fc\u30bf\u30b9":[33,40,82,130,143,205],"\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9":39,"\u30b9\u30c6\u30fc\u30c8\u30d5\u30eb":205,"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9":[41,128,192,215],"\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":[33,40,166],"\u30b9\u30d1\u30de\u30fc":[182,183,184],"\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":155,"\u30b9\u30da\u30eb":180,"\u30b9\u30da\u30fc\u30b9":[33,37,40,128],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8":[37,199],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30c1\u30e3\u30fc\u30c8":37,"\u30b9\u30ec\u30c3\u30c9":[0,9,33,51,66,94,102,108,130,134,137,145,146,199],"\u30b9\u30ec\u30c3\u30c9\u30bb\u30fc\u30d5":33,"\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb":66,"\u30b9\u30ed\u30fc\u30af\u30a8\u30ea\u30fc":[33,147],"\u30b9\u30ef\u30c3\u30d7":194,"\u30b9\u30fc\u30d7":206,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":206,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":206,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":206,"\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,44,48,76,77,79,83,86,88,90,91,92,93,94,99,100,101,102,103,107,108,109,110,111,112,113,115,116,117,123,124,125,126,127,128,130,132,134,135,136,137,138,140,143,147,152,155,159,170,175,180,181,182,183,184,186,187,188,190,194,205,212],"\u30bb\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u30d5\u30a9\u30eb\u30c8":39,"\u30bb\u30b0\u30e1\u30f3\u30c8":[41,61,84,96],"\u30bb\u30c3\u30b7\u30e7\u30f3":[120,145,205],"\u30bb\u30c3\u30c8":[11,33,61,64,65,85,136,206],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":[17,40,150],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u30b9\u30af\u30ea\u30d7\u30c8":21,"\u30bb\u30df\u30b3\u30ed\u30f3":146,"\u30bb\u30ec\u30af\u30bf\u30fc":[33,163],"\u30bb\u30f3\u30c8\u30e9\u30eb\u30d1\u30fc\u30af":217,"\u30bd\u30b1\u30c3\u30c8":[39,84,85,87,89,95,96,98,104,105,106,120,129,133],"\u30bd\u30d5\u30c8":180,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":[],"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8":213,"\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,86,88,127],"\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,64,128,131],"\u30bf\u30a4\u30c8\u30eb":[110,128,170,171,182,183,184,211,213,216],"\u30bf\u30a4\u30d7":[33,37,56,128,146,199],"\u30bf\u30a4\u30d7id":33,"\u30bf\u30a4\u30df\u30f3\u30b0":[39,214],"\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[40,46],"\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7":[36,187,188,190],"\u30bf\u30b0":[],"\u30bf\u30b0\u30c6\u30ad\u30b9\u30c8":193,"\u30bf\u30d6":[178,180,205],"\u30bf\u30fc\u30b2\u30c3\u30c8":39,"\u30bf\u30fc\u30b2\u30c3\u30c8\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":47,"\u30bf\u30fc\u30df\u30ca\u30eb":147,"\u30c0\u30a4\u30a2\u30ed\u30b0":40,"\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8":199,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":[],"\u30c0\u30d6\u30eb":[37,39,132,170,171,191],"\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":[113,138,145,214],"\u30c0\u30e1\u30fc\u30b8":208,"\u30c0\u30f3\u30d7":[33,35,39,40,98,194],"\u30c1\u30a7\u30c3\u30af":[33,35,37,39,40,41,51,84,115,134,143,144,146,153],"\u30c1\u30a7\u30c3\u30af\u30b5\u30e0":12,"\u30c1\u30e3\u30f3\u30af":[33,84],"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba":84,"\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8":84,"\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":194,"\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,54,76,113,132,136,138,146,158,159,160,166,174,177,181,193],"\u30c6\u30ad\u30b9\u30c8\u30ab\u30e9\u30e0":33,"\u30c6\u30ad\u30b9\u30c8\u30c7\u30fc\u30bf":132,"\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":146,"\u30c6\u30af\u30cb\u30c3\u30af":[182,183,184],"\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":146,"\u30c6\u30fc\u30d6\u30eb":[],"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[133,135],"\u30c6\u30fc\u30d6\u30eb\u30d7\u30e9\u30b0\u30a4\u30f3":39,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id":58,"\u30c7\u30a3\u30b9\u30af":[33,34,94,99,115,216],"\u30c7\u30a3\u30b9\u30af\u30d5\u30eb":33,"\u30c7\u30a3\u30b9\u30afi":132,"\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,84,138,147],"\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,46,49,51,53,60,76,78,95,98,100,101,102,103,106,108,109,110,117,123,128,130,131,132,136,138,144,145,146,147,155,156,164,170,171,172,178,182,184,194,195,199,205,206,208,211,212,214],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[39,86,132,188],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30dd\u30fc\u30c8":41,"\u30c7\u30d5\u30e9\u30b0":37,"\u30c7\u30d7\u30ed\u30a4":147,"\u30c7\u30e1\u30ea\u30c3\u30c8":191,"\u30c7\u30fc\u30bf":[],"\u30c7\u30fc\u30bf\u30ab\u30e9\u30e0":[33,123,143,183,184],"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2":47,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[72,76],"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0":72,"\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8":[131,187],"\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb":146,"\u30c7\u30fc\u30bf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":199,"\u30c7\u30fc\u30bf\u30d9\u30fc":37,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b5\u30a4\u30ba":194,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b9\u30ad\u30fc\u30de":98,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":[40,194],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":[],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u30b3\u30de\u30f3\u30c9":185,"\u30c7\u30fc\u30e2\u30f3":[],"\u30c7\u30fc\u30e2\u30f3\u30d7\u30ed\u30bb\u30b9":147,"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":[40,41,145],"\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":212,"\u30c8\u30d4\u30c3\u30af":12,"\u30c8\u30e2":213,"\u30c8\u30e9\u30a4":[37,132,170,171,191],"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[],"\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5":[193,208],"\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\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":33,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[41,138],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30e2\u30fc\u30b8\u30e5\u30fc\u30eb":193,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fcapi":39,"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":[],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u30e2\u30fc\u30c9":[33,136,138],"\u30c8\u30fc\u30af\u30f3":[33,35,37,40,41,132,136,138,171,174,188,190,191,192,193,206],"\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\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":33,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":192,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":192,"\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":[33,41,212],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[],"\u30ca\u30ce":[35,79],"\u30cb\u30c3\u30dd\u30f3":[163,177,187],"\u30cb\u30db\u30f3":[163,177,187],"\u30cb\u30db\u30f3\u30b4":187,"\u30cb\u30db\u30f3\u30b8\u30f3":187,"\u30cb\u30e5\u30fc\u30b9":172,"\u30cb\u30e5\u30fc\u30e8\u30fc\u30af":[155,217],"\u30cd\u30b9\u30c8":[33,39,40,41,116,216],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":[199,218],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":[39,205],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d7\u30ed\u30c8\u30b3\u30eb":39,"\u30ce\u30a4\u30ba":[188,208],"\u30ce\u30fc\u30c9":[39,65],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":[],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":33,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d7\u30b7\u30e7\u30f3":174,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[113,174],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":174,"\u30ce\u30fc\u30de\u30e9\u30a4\u30ba":[40,41,113,138,214],"\u30cf\u30a4\u30d5\u30f3":[132,214],"\u30cf\u30a4\u30e9\u30a4\u30c8":[33,158,159],"\u30cf\u30c3\u30b7\u30e5":[12,33,39,84],"\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb":[33,37,40,132,171,191],"\u30d0\u30a4\u30b0\u30e9\u30e0":[193,208],"\u30d0\u30a4\u30b0\u30e9\u30e0\u30d9\u30fc\u30b9":193,"\u30d0\u30a4\u30c8":[33,35,37,39,40,41,48,51,65,81,82,116,127,128,166,191,195],"\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":39,"\u30d0\u30a4\u30c8\u30b5\u30a4\u30ba":[33,54],"\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":79,"\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":[20,21,169],"\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":98,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":[40,54,145,170],"\u30d0\u30c3\u30c1\u30e2\u30fc\u30c9":39,"\u30d0\u30c3\u30d5\u30a1":[39,40,48,54,56,59,61,64,84,216],"\u30d0\u30c3\u30d5\u30a1\u30b5\u30a4\u30ba":33,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8":84,"\u30d0\u30c3\u30d5\u30a1\u30ea\u30f3\u30b0":40,"\u30d0\u30c3\u30d5\u30a1id":84,"\u30d0\u30ea\u30e5\u30fc\u30b5\u30dd\u30fc\u30c8":191,"\u30d0\u30eb\u30af":33,"\u30d0\u30eb\u30af\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":33,"\u30d0\u30f3\u30c9\u30eb":[33,40,41],"\u30d1\u30a4\u30d7":87,"\u30d1\u30b9":[12,28,33,35,36,37,41,52,88,118,119,122,143,144,145,146,147,148,151,199,205,214],"\u30d1\u30b9\u30b9\u30bf\u30a4\u30eb":181,"\u30d1\u30bf\u30fc\u30f3":[33,79,170,171,181],"\u30d1\u30bf\u30fc\u30f3\u30de\u30c3\u30c1":181,"\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":[33,35,37,40,132,170,171,191],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30c6\u30fc\u30d6\u30eb":[170,171],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30ce\u30fc\u30c9":33,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":[33,40,41,144,147,161,203],"\u30d1\u30e9\u30e1\u30bf":[46,47,48,49,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66,67,68,70],"\u30d1\u30e9\u30e1\u30fc\u30bf":[],"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[],"\u30d1\u30ea":155,"\u30d1\u30fc\u30b5\u30fc":[12,170,181],"\u30d1\u30fc\u30b9":[37,53,54,169],"\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3":41,"\u30d2\u30c3\u30c8":[11,40,128,172,177,187,206,208,217,219],"\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2":[128,169,208],"\u30d2\u30e5\u30d9\u30cb":[155,156],"\u30d3\u30c3\u30b0\u30a8\u30f3\u30c7\u30a3\u30a2\u30f3":41,"\u30d3\u30c3\u30c8":[],"\u30d3\u30c3\u30c8\u30b7\u30d5\u30c8":171,"\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,141],"\u30d4\u30ea\u30aa\u30c9":[87,216],"\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":[48,52,61,64],"\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":180,"\u30d5\u30a1\u30bb\u30c3\u30c8":128,"\u30d5\u30a3\u30eb\u30bf":[33,39],"\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0":40,"\u30d5\u30a3\u30eb\u30bf\u30fc":167,"\u30d5\u30a3\u30eb\u30bf\u30fc\u30c6\u30ad\u30b9\u30c8":128,"\u30d5\u30a3\u30fc\u30eb\u30c9":88,"\u30d5\u30a9\u30eb\u30c0\u30fc":31,"\u30d5\u30a9\u30ed\u30ef\u30fc":12,"\u30d5\u30a9\u30ed\u30fc":[],"\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8":217,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[],"\u30d5\u30a9\u30fc\u30e0":[40,128,169,170],"\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af\u30e2\u30fc\u30c9":33,"\u30d5\u30c3\u30af":21,"\u30d5\u30e9\u30b0":[33,34,37,38,39,41,51,65,76,84,85,87,88,89,95,104,105,106,113,127,128,132,138,170,171,174,181,205,211,214,215,219],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":96,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3":[34,96],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8":61,"\u30d5\u30e9\u30c3\u30b7\u30e5":33,"\u30d5\u30e9\u30f3\u30b9":155,"\u30d5\u30ec\u30fc\u30ba":[],"\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af":14,"\u30d6\u30c3\u30af\u30de\u30fc\u30af":76,"\u30d6\u30e9\u30a6\u30b6":[12,17,28,218],"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":[],"\u30d6\u30e9\u30b8\u30ea\u30a2":155,"\u30d6\u30e9\u30b8\u30eb":155,"\u30d6\u30ed\u30b0":[],"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea":[128,170,171,216],"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea\u30fc":110,"\u30d6\u30ed\u30c3\u30af":[0,40,147],"\u30d6\u30fc\u30ea\u30a2\u30f3":195,"\u30d6\u30fc\u30eb":[195,211],"\u30d7\u30e9\u30b0\u30a4\u30f3":[0,17,24,25,26,28,30,33,34,35,36,37,39,40,41,98,107,108,109,110,111,118,119,122,125,126,127,164,168,174,180,185,192],"\u30d7\u30e9\u30b0\u30a4\u30f3api":41,"\u30d7\u30e9\u30b0\u30de":128,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0":[14,17,23,28,37],"\u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8":[],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9":[66,147,185,191,214],"\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,88,147,171],"\u30d7\u30ed\u30b7\u30fc\u30b8\u30e3":163,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[],"\u30d7\u30ed\u30bb\u30b9":[],"\u30d7\u30ed\u30bb\u30b9id":205,"\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3":147,"\u30d7\u30ed\u30c8\u30b3\u30eb":[],"\u30d7\u30ed\u30d1\u30c6\u30a3":127,"\u30d7\u30ed\u30f3\u30d7\u30c8":178,"\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,145],"\u30d9\u30af\u30bf":[34,35,39,40,61],"\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":76,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af":41,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb":146,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30d7\u30ed\u30b0\u30e9\u30e0":40,"\u30d9\u30fc\u30b7\u30c3\u30af":199,"\u30d9\u30fc\u30b9":[0,17,35,37,39,41,64,65,124,138,170,171,177,182,183,184,185,193,198,203],"\u30d9\u30fc\u30b9\u30d1\u30b9":147,"\u30da\u30a2":[33,116,128,141,180,187,188,189,190,211,220],"\u30da\u30fc\u30b8":[2,12,17,22,33,39,40,128,145,148,214],"\u30da\u30fc\u30b8\u30e9\u30f3\u30af":[182,183,184],"\u30da\u30fc\u30b9\u30c8":39,"\u30db\u30b9\u30c8":[12,37,39,144,145,146,205],"\u30dc\u30bf\u30f3":[12,17,39,40],"\u30dc\u30c3\u30af\u30b9":128,"\u30dc\u30c7\u30a3":[86,94,99,115,116,117,118,119,122,132,134,135,137,205],"\u30dd\u30a4\u30f3\u30bf":[51,61,62,64,65,68],"\u30dd\u30a4\u30f3\u30c8":[76,180],"\u30dd\u30b9\u30c6\u30a3\u30f3\u30b0\u30ea\u30b9\u30c8":33,"\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3":[37,40],"\u30dd\u30fc\u30c8":[40,144,145,146,178,199,203,205,218],"\u30de\u30a4\u30af\u30ed":[171,195,211,217],"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":[],"\u30de\u30af\u30c9\u30ca\u30eb\u30c9":176,"\u30de\u30af\u30ed":[33,37,40,61],"\u30de\u30b7\u30f3":[145,185],"\u30de\u30c3\u30c1":[],"\u30de\u30c3\u30c1\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":28,"\u30de\u30c3\u30d4\u30f3\u30b0":209,"\u30de\u30c3\u30d7":[33,94,194],"\u30de\u30c9\u30ea\u30fc\u30c9":155,"\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[33,40,41,88,127,216],"\u30de\u30eb\u30c1\u30b3\u30a2":0,"\u30de\u30eb\u30c1\u30b3\u30a2cpu":28,"\u30de\u30eb\u30c1\u30b9\u30ec\u30c3\u30c9":[33,41,94,124,199],"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3":40,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":89,"\u30de\u30eb\u30c1\u30d0\u30a4\u30c8":37,"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9":[37,199],"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30e2\u30c7\u30eb":41,"\u30de\u30eb\u30c1\u30e9\u30a4\u30f3\u30e2\u30fc\u30c9":181,"\u30de\u30fc\u30af":193,"\u30de\u30fc\u30af\u30a2\u30c3\u30d7":33,"\u30de\u30fc\u30b8":[17,39],"\u30df\u30b9":187,"\u30df\u30ea":[37,171,195,211,221],"\u30df\u30ea\u79d2":195,"\u30e1\u30bd\u30c3\u30c9":33,"\u30e1\u30bf\u30c7\u30fc\u30bf":[88,125,126,182,183,184],"\u30e1\u30bf\u30d1\u30c3\u30b1\u30fc\u30b8":39,"\u30e1\u30c3\u30bb\u30fc\u30b8":[6,7,33,41,78,217],"\u30e1\u30c3\u30bb\u30fc\u30b8\u30dc\u30c7\u30a3":40,"\u30e1\u30e2":[182,183,184],"\u30e1\u30e2\u30ea":[],"\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":14,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0":35,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":[14,33,34,35,37,39,40,41,87],"\u30e1\u30e2\u30ea\u30fc":[33,94,99,132,194],"\u30e1\u30e2\u30ea\u30fc\u30a2\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3":33,"\u30e1\u30e2\u30ea\u30fc\u30d6\u30ed\u30c3\u30af":130,"\u30e1\u30e2\u30ea\u30fc\u30de\u30c3\u30d7":194,"\u30e1\u30e2\u30ea\u30fc\u30ea\u30fc\u30af":[33,130],"\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u30b3\u30b9\u30c8":193,"\u30e1\u30f3\u30d0":64,"\u30e1\u30fc\u30c8\u30eb":[155,156],"\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,117,138,145,148,205,214],"\u30e6\u30fc\u30b6":[11,12,39,87,128,146,187,188,189,190,195,214],"\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf":68,"\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":[76,86,193],"\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,69,137],"\u30e9\u30d9\u30eb":[33,40,41,110,128],"\u30e9\u30f3\u30ad\u30f3\u30b0":[41,214],"\u30e9\u30f3\u30c0\u30e0":221,"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0":0,"\u30ea\u30af\u30a8\u30b9\u30c8":[],"\u30ea\u30af\u30a8\u30b9\u30c8\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":141,"\u30ea\u30af\u30a8\u30b9\u30c8gqtp":205,"\u30ea\u30af\u30a8\u30b9\u30c8id":[],"\u30ea\u30af\u30a8\u30b9\u30c8uri":147,"\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,54,99,100,108,111,116,128,132,133,145,170,171,174,176,180,181,192,193,213,214],"\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7":12,"\u30ea\u30bb\u30c3\u30c8":33,"\u30ea\u30bd\u30fc\u30b9":[],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":[],"\u30ea\u30c6\u30e9\u30eb":[],"\u30ea\u30c8\u30e9\u30a4":46,"\u30ea\u30cd\u30fc\u30e0":[33,37,44,86],"\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":[],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":[],"\u30ea\u30e9\u30a4\u30bf\u30fc":33,"\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,128,170,171,211],"\u30eb\u30fc\u30c8":37,"\u30eb\u30fc\u30d7":[33,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,47,82,86,109,128,130,199,205],"\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf":199,"\u30ec\u30b9\u30dd\u30f3\u30b9\u30d8\u30c3\u30c0\u30fc":[33,199],"\u30ec\u30d9\u30eb":[33,39,41,104,105,145],"\u30ec\u30dd\u30fc\u30c8":28,"\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0":0,"\u30ec\u30fc\u30bf":39,"\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0":153,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3":34,"\u30ed\u30ac\u30fc":33,"\u30ed\u30ae\u30f3\u30b0":[33,51],"\u30ed\u30b0":[],"\u30ed\u30b0\u30a4\u30f3":[12,194],"\u30ed\u30b0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":41,"\u30ed\u30b0\u30d1\u30b9":35,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":[28,33,78,106,128,145,146,209],"\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8":[33,39,40,181],"\u30ed\u30b0\u30ec\u30d9\u30eb":[33,147],"\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":[33,145],"\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":[33,34,37,39,40,46,61,85,101,102,103,145],"\u30ed\u30c3\u30af\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[40,46],"\u30ed\u30f3\u30c9\u30f3":155,"\u30ed\u30fc\u30ab\u30eb":[12,171],"\u30ed\u30fc\u30c6\u30fc\u30c8":145,"\u30ed\u30fc\u30c9":[],"\u30ed\u30fc\u30c9\u30a8\u30e9\u30fc":39,"\u30ed\u30fc\u30de":[],"\u30ed\u30fc\u30de\u30b8":[163,177],"\u30ef\u30a4\u30c9":37,"\u30ef\u30fc\u30ab":147,"\u30ef\u30fc\u30ab\u30fc":147,"\u30ef\u30fc\u30ab\u30fc\u30b9\u30ec\u30c3\u30c9":40,"\u30fb\u30b5\u30fc\u30d0":214,"\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":217,"\u30fb\u5168":95,"\u30fb\u5186":0,"\u30fb\u6d6e\u52d5\u5c0f":128,"\u30fb\u81ea\u5df1\u7d39":217,"\u30fbgroonga":33,"\u30fbor":221,"\u30fbroot":33,"\u4e00\u3064":[0,47,48,51,64,78,84,85,87,89,95,96,98,104,105,106,120,129,133,154,155,156,157,160,162,165,167,168,195,206,211],"\u4e00\u4ef6":65,"\u4e00\u4ef6\u9032\u3081":[],"\u4e00\u500b":11,"\u4e00\u5207":33,"\u4e00\u5bfe":211,"\u4e00\u5de5":219,"\u4e00\u5ea6":[37,39,41,46,118,122,147,172,174,180,194,212,216],"\u4e00\u5f0f":61,"\u4e00\u610f":[74,87,124,145],"\u4e00\u62ec":64,"\u4e00\u62ec\u3057":[],"\u4e00\u6587":41,"\u4e00\u6587\u5b57":33,"\u4e00\u65b9":[0,66,69,128,159,164,166,167,170,171,193,208,211,214,216],"\u4e00\u6642":[],"\u4e00\u6642\u30c6\u30fc\u30d6\u30eb":[],"\u4e00\u6642\u7684":61,"\u4e00\u6642\u7d50\u679c":[],"\u4e00\u6b69":[],"\u4e00\u6c17":12,"\u4e00\u756a":[28,44,76,128,171,199],"\u4e00\u756a\u5de6":[],"\u4e00\u756a\u901f\u3044":[],"\u4e00\u77ed":0,"\u4e00\u7dd2":[34,39,41,48,51,76,128,132,155,168,193,208,214],"\u4e00\u7fa4":11,"\u4e00\u81f4":[],"\u4e00\u81f4\u3057":[],"\u4e00\u81f4\u7528":[],"\u4e00\u81f4rk":[],"\u4e00\u822c":[0,21,47,61,128,169,170,193,214],"\u4e00\u822c\u7684":[],"\u4e00\u884c":[35,145,146],"\u4e00\u89a7":[],"\u4e00\u8a9e":208,"\u4e00\u8cab":[10,33],"\u4e00\u8cab\u6027":[],"\u4e00\u90e8":[12,33,39,89,185,189,193,214],"\u4e00\u9577":0,"\u4e09\u3064":[155,206],"\u4e09\u756a\u76ee":171,"\u4e09\u7a2e":[1,218],"\u4e09\u8c37":41,"\u4e09\u8c37\u3055\u3093":[],"\u4e0a\u304c\u3063":193,"\u4e0a\u3052\u308b":208,"\u4e0a\u4f4d":[64,208],"\u4e0a\u554f":203,"\u4e0a\u66f8\u304d":[12,221],"\u4e0a\u8a18":[17,21,28,32,33,39,107,128,132,146,153,160,164,167,180,188,190,193,205,208,212,214,221],"\u4e0a\u8a18url":12,"\u4e0a\u8ff0":180,"\u4e0a\u91ce":35,"\u4e0a\u9650":[],"\u4e0b\u304c\u3063":193,"\u4e0b\u304c\u308a":208,"\u4e0b\u3052":33,"\u4e0b\u3055\u3044":[1,12,23,24,25,26,30,31,39,40,64,88,138],"\u4e0b\u66f8\u304d":176,"\u4e0b\u8a18":[11,65,78,84],"\u4e0b\u90e8":12,"\u4e0b\u9650":[58,65],"\u4e0d\u5177\u5408":[3,33,39,40,41],"\u4e0d\u5909":74,"\u4e0d\u5b8c\u5168":37,"\u4e0d\u5fc5\u8981":33,"\u4e0d\u610f":99,"\u4e0d\u6574\u5408":34,"\u4e0d\u6b63":[14,33,34,35,37,40,41,99,132],"\u4e0d\u6b63\u78ba":39,"\u4e0d\u80fd":146,"\u4e0d\u8981":[0,33,39,40,41,193,202],"\u4e0d\u8db3":[23,24,25,26,30,31,33,41],"\u4e0d\u9069\u5207":[39,41],"\u4e0e\u3048":[11,39,40,53,65,100,145,205,208,214],"\u4e0e\u3048\u308b":[78,100,144,145,221],"\u4e16\u4ee3":78,"\u4e16\u754c":[155,156,157,195,211,221],"\u4e21\u65b9":[0,76,110,128,170,171,172,181,187,191,193,217,219],"\u4e21\u8005":221,"\u4e26\u3073":[171,206],"\u4e26\u3073\u9806":221,"\u4e26\u3079":[],"\u4e26\u5217":[],"\u4e2d\u4e95":40,"\u4e2d\u56fd":155,"\u4e2d\u592e\u5024":41,"\u4e2d\u5fc3":156,"\u4e2d\u65ad":[37,39,41,56],"\u4e2d\u7a0b\u5ea6":[23,24,25,26,30,31],"\u4e2d\u8eab":[41,146,205,214],"\u4e2d\u9593":[11,206],"\u4e38\u62ec":214,"\u4e3b\u30ad\u30fc":[],"\u4e3b\u8981":23,"\u4e43\u6bc5":35,"\u4e57\u308a":107,"\u4e71\u6570":[165,221],"\u4e88\u3081":[145,195],"\u4e88\u5b9a":[16,33,37,76,78,125,126,155,166,181,185,199],"\u4e88\u7d04":87,"\u4e8b\u524d":[12,107,108,109,111,125,126,189,208],"\u4e8b\u67c4":10,"\u4e8b\u9805":[],"\u4e8c\u3064":[51,78,107,109,110,112,113,138,146,155,161,163,164,167,206],"\u4e8c\u3064\u76ee":11,"\u4e8c\u70b9\u9593":155,"\u4e8c\u756a":128,"\u4e8c\u756a\u76ee":171,"\u4e8c\u91cd":[33,40,41,170],"\u4e8c\u9805":[33,171],"\u4e92\u63db":[12,24,25,26,30,33,41,78,110,113,148,171,183,184,199],"\u4e92\u63db\u6027":12,"\u4e94\u5165":37,"\u4eac\u90fd":[193,206,208],"\u4eba\u3068":10,"\u4eba\u5411\u3051":33,"\u4eca\u56de":[39,166,171,214],"\u4eca\u5f8c":[37,106,125,138,181],"\u4ecb\u3057":[0,218],"\u4ecb\u6587":217,"\u4ed5\u65b9":[],"\u4ed5\u69d8":[],"\u4ed5\u7d44":[17,33,199],"\u4ed5\u7d44\u307f":[33,39,147],"\u4ed8\u3044":174,"\u4ed8\u304d":[],"\u4ed8\u3051":[39,81,97,124,153,158,159,199,205,211,214,216],"\u4ed8\u3051\u308b":[9,171,174,192,214,220],"\u4ed8\u3051\u65b9":81,"\u4ed8\u4e0e":[],"\u4ed8\u5c5e":[147,148],"\u4ed8\u968f":89,"\u4ee3\u308a":[39,155,170],"\u4ee3\u308f\u308a":[28,31,33,128,130,132,145,147,158,159,166,170,174,181,193,205],"\u4ee3\u5165":[],"\u4ee3\u8868":0,"\u4ee5\u4e0a":[],"\u4ee5\u4e0b":[],"\u4ee5\u5185":[171,187,188,217,221],"\u4ee5\u524d":[33,37,39,40,41,174,208,211,217],"\u4ee5\u5916":[0,11,12,35,37,40,41,44,47,48,51,52,54,58,61,64,67,69,76,110,123,128,132,143,146,170,176,181,191,195],"\u4ee5\u964d":[12,14,17,33,35,37,40,41,90,107,135,145,158,159,160,174,176,193,218],"\u4eee\u540d":177,"\u4eee\u5b9a":124,"\u4eee\u60f3":[12,33,40,212,221],"\u4ef6\u540c":33,"\u4ef6\u542b":217,"\u4ef6\u6570":[33,41,61,64,74,100,206,208,214],"\u4efb\u610f":[0,12,145,146,214],"\u4f1a\u793e":[33,41],"\u4f1d\u7d71":0,"\u4f3c\u305f":174,"\u4f4e\u3044":208,"\u4f4e\u304f":[193,208],"\u4f4e\u4e0b":40,"\u4f4e\u6a5f":11,"\u4f4e\u6e1b":[35,203],"\u4f4f\u3093":217,"\u4f4f\u6240":39,"\u4f50\u85e4":33,"\u4f53\u8fd1":156,"\u4f55\u3089\u304b":195,"\u4f55\u500b":128,"\u4f55\u5ea6":[40,124],"\u4f59\u308a":171,"\u4f59\u8a08":10,"\u4f5c\u3063":[37,64,65,115,117,127,147,174,187,208,212],"\u4f5c\u3089":[33,107],"\u4f5c\u3089\u308c":[41,146],"\u4f5c\u308a":[41,123,130,132,187,188,194,216],"\u4f5c\u308a\u76f4\u3057":123,"\u4f5c\u308a\u76f4\u3059":[33,123],"\u4f5c\u308c":101,"\u4f5c\u308c\u308b":33,"\u4f5c\u6210":[],"\u4f5c\u6210\u6e08":145,"\u4f5c\u696d":[],"\u4f5c\u7528":39,"\u4f75\u305b":214,"\u4f7f\u3044":[],"\u4f7f\u3044\u5206\u3051":[206,208],"\u4f7f\u3044\u65b9":[],"\u4f7f\u3046":[],"\u4f7f\u3048":[6,8,21,33,37,40,41,44,86,94,109,110,117,123,124,128,132,138,147,152,153,169,170,171,177,181,182,183,184,185,193,197,198,212,214],"\u4f7f\u3048\u308b":[21,28,33,37,39,40,41,127,128,145,170,181,185],"\u4f7f\u3063":[],"\u4f7f\u308f":[12,21,33,37,40,41,44,47,51,82,99,108,110,115,128,132,134,138,147,153,169,170,174,177,180,181,187,191,193,205,212,213,220],"\u4f7f\u308f\u305a":164,"\u4f7f\u7528":[],"\u4f7f\u7528\u4f8b":155,"\u4f8b\u3068\u3057\u3066":[194,211],"\u4f8b\u3068\u3068\u3082":155,"\u4f8b\u5916":[26,33,41,86,116,125,126],"\u4f9d\u5b58":[],"\u4fbf\u5229":[0,1,6,7,28,33,48,76,79,107,108,113,123,127,128,138,169,170,177,181,187,211],"\u4fc2\u6570":[11,128],"\u4fdd\u5b58":[],"\u4fdd\u6301":[47,51,211,215,217],"\u4fdd\u8a3c":[78,84],"\u4fe1\u6d0b":33,"\u4fe1\u983c":143,"\u4fee\u5e73":41,"\u4fee\u6b63\u4e2d":188,"\u500b\u3005":[11,78,107,109,112,208],"\u500b\u4eba":28,"\u500b\u5225":12,"\u500b\u5b9a":9,"\u500b\u6240":41,"\u500b\u6570":[39,48],"\u500d\u7cbe":195,"\u5019\u88dc":[131,163,187,188,189],"\u5024\u304b":155,"\u5024\u3054":212,"\u5024\u3054\u3068":212,"\u5024\u3060\u3051":171,"\u5024\u3068":[128,170,211],"\u5024\u3068\u3057\u3066":[145,155,209,217],"\u5024\u306a\u3057":38,"\u5024\u306a\u3089":40,"\u5024\u3088\u308a":[11,128],"\u5024\u4ee5\u4e0a":145,"\u5024\u578b":211,"\u5024\u57df":72,"\u5024\u6bce":212,"\u5024\u7528":37,"\u5024\u8a18":171,"\u505c\u6b62":[33,40,78,90,129,135,145],"\u5065\u4f5c":213,"\u5074\u9762":0,"\u5076\u6570":171,"\u5099\u8003":40,"\u50be\u5411":216,"\u512a\u308c":[0,193],"\u512a\u5148":[0,33,94,146,187],"\u5143\u6c17":40,"\u5148\u60c5":217,"\u5148\u982d":[56,61,128,147,181,193,214],"\u5149\u7537":40,"\u5165\u3063":[14,33,39,40,79,187,205,213,214,216],"\u5165\u308a":[],"\u5165\u308b":133,"\u5165\u308c":[193,208,213,217],"\u5165\u308c\u308b":[33,181],"\u5165\u529b":[34,37,38,40,79,84,85,87,89,95,96,98,100,104,105,106,120,128,131,133,144,145,146,171,177,187,188,189,190,205,214],"\u5165\u529b\u30df\u30b9":188,"\u5168\u304f":33,"\u5168\u3066":[17,64,128,147,169,172,195,216],"\u5168\u4e16\u754c":40,"\u5168\u4ef6":[65,170,171],"\u5168\u4f53":[],"\u5168\u524a":140,"\u5168\u6587\u691c":[],"\u5168\u6587\u691c\u7d22":[],"\u5168\u89d2":[33,37,65,174,214],"\u5168\u90e8":205,"\u5168suffix":64,"\u516c\u5e73":40,"\u516c\u5f0f":[8,24,26,37,164],"\u516c\u8f14":40,"\u516c\u958b":[12,33,35,37,40,41,47],"\u516c\u958b\u9375":12,"\u5171\u306b":[48,61],"\u5171\u901a":[10,37,107,109,112,171,191,195,216],"\u5171\u901a\u63a5":191,"\u5177\u4f53":[128,208,212,216],"\u5177\u4f53\u4f8b":[86,110],"\u5177\u5408":[128,171],"\u5178\u578b":33,"\u5185\u5bb9":[10,12,17,33,39,41,52,56,59,65,79,88,110,128,133,144,146,166,170,171,187,190,194,203,211,214,216,217,218],"\u5185\u8a33":208,"\u5185\u8fd1\u304f":171,"\u5185\u90e8":[12,33,38,41,47,51,57,61,64,166,211],"\u5186\u6ed1":12,"\u518d\u3073":41,"\u518d\u4f5c":33,"\u518d\u5229":[33,41,74,191],"\u518d\u5e30":[11,44,61,85,102,128,143,147,180],"\u518d\u5ea6":[11,33,41,46],"\u518d\u691c":169,"\u518d\u69cb":37,"\u518d\u73fe":[10,40,169,193,208],"\u518d\u751f":147,"\u518d\u767a":41,"\u518d\u8aad":[106,180],"\u518d\u8d77":[33,180,194,203],"\u518d\u8d77\u52d5":[],"\u51e6\u7406":[0,6,7,11,17,33,34,35,39,40,41,56,74,77,82,99,102,113,128,130,132,136,138,143,146,147,159,166,170,171,192,193,199,205,206,221],"\u51fa\u3055":40,"\u51fa\u3057":217,"\u51fa\u3059":217,"\u51fa\u305b\u308b":0,"\u51fa\u529b":[],"\u51fa\u6765":[138,213,216],"\u51fa\u6765\u308b":217,"\u51fa\u73fe":[0,33,48,88,131,182,183,184,215],"\u5206\u304b\u3061":0,"\u5206\u3051":[],"\u5206\u3051\u308b":[12,211],"\u5206\u307e":185,"\u5206\u5272":[0,33,37,171,191,193,206,214],"\u5206\u5c90":14,"\u5206\u6563":185,"\u5206\u6790":0,"\u5206\u89e3":[11,185],"\u5206\u914d":110,"\u5206\u985e":[211,212],"\u5206z":195,"\u5207\u3089":41,"\u5207\u308a":[12,33,37,40,41,120],"\u5207\u308a\u6368\u3066":211,"\u5207\u308b":[41,147],"\u5207\u308c":33,"\u5217\u4e2d":[33,171],"\u5217\u578b":[41,170,211,212],"\u5217\u5f0f":54,"\u5217\u5f15":11,"\u5217\u60c5":138,"\u5217\u6307\u5411":0,"\u5217\u6319":[33,214],"\u5217\u8868":[54,195],"\u5217\u95a2":33,"\u521d\u56de":17,"\u521d\u671f":[0,35,37,39,41,52,61],"\u521d\u671f\u5024":144,"\u521d\u671f\u5316":[33,39,51,62,69],"\u5224\u5b9a":221,"\u5224\u65ad":[52,128,171],"\u5225\u3005":[128,212],"\u5225\u540d":33,"\u5225\u9014":[61,195],"\u5229\u70b9":0,"\u5229\u7528":[],"\u5229\u7528\u4f8b":0,"\u5230\u9054":32,"\u5236\u5fa1":[],"\u5236\u7d04":32,"\u5236\u9650":[],"\u5247\u3063":185,"\u524a\u6e1b":[],"\u524a\u9664":[],"\u524d\u3082\u3063":33,"\u524d\u4ed8":109,"\u524d\u4ed8\u304d":61,"\u524d\u56de":12,"\u524d\u5f8c":[145,214],"\u524d\u63d0":[],"\u524d\u65b9":[],"\u524d\u65b9\u4e00\u81f4":[],"\u524d\u8005":[44,174,180,221],"\u524d\u8ff0":[132,147,174,208],"\u5270\u4f59":[],"\u5272\u3063":[182,184],"\u5272\u308a":[],"\u5272\u308a\u5f53\u3066":[35,47],"\u5272\u308a\u5f53\u3066\u308b":[81,191,211,214],"\u5272\u308b":184,"\u5272\u5408":130,"\u52a0\u3048":[11,21,99,211,219],"\u52a0\u3048\u308b":[37,87,99],"\u52a0\u308f\u308b":10,"\u52a0\u7b97":[],"\u52a3\u5316":33,"\u52b9\u679c":[108,217],"\u52b9\u7387":[33,99,216],"\u52c9\u5f37":193,"\u52d5\u3044":[33,66],"\u52d5\u304b":[33,40,41,94,181],"\u52d5\u304b\u3057":194,"\u52d5\u304b\u3059":33,"\u52d5\u304d":[33,128,137,185,199],"\u52d5\u304f":[28,37,39,194,198],"\u52d5\u4f5c":[],"\u52d5\u5c0f":195,"\u52d5\u74b0":144,"\u52d5\u753b":213,"\u52d5\u7684":[],"\u52e7\u3081":41,"\u5316\u4f5c":12,"\u5316\u51e6":[37,74],"\u5316\u524d":74,"\u5316\u5bfe":17,"\u5316\u65b9":[113,174],"\u5316\u6642":37,"\u5316\u6e08":[52,61],"\u5316\u6f0f\u308c":39,"\u5316\u95a2":35,"\u5317\u4eac":155,"\u5317\u534a\u7403":39,"\u5317\u5e02":33,"\u533a\u5207\u3063":[113,128,136,138,205],"\u533a\u5207\u3089":37,"\u533a\u5207\u308a":[0,33,39,98,100,128,131,138,144,145,170,171,178,190,193,195,211,212,214],"\u533a\u5207\u308b":[35,128,180],"\u533a\u5225":[128,181,195,219],"\u5341\u4e00":206,"\u5341\u5206":[59,118,122,128,208,209],"\u5341\u5206\u6c17":[],"\u5343\u4e07":32,"\u534a\u5f84":156,"\u534a\u7121":[37,132],"\u534a\u89d2":[65,174,214],"\u5354\u529b":[],"\u5357\u534a":39,"\u5358\u306b":[40,126],"\u5358\u4e00":87,"\u5358\u4f4d":[0,33,35,37,67,77,79,116,130,141,155,156,166,171,193,195,205,206,214,217],"\u5358\u4f53":[0,146],"\u5358\u72ec":[48,146],"\u5358\u7d14":[11,81,156,219],"\u5358\u8a9e":[],"\u535a\u4e4b":33,"\u5360\u6709":61,"\u5371\u967a":[12,90,101,102,103,117,135,199],"\u5373\u5ea7":33,"\u539f\u56e0":[],"\u539f\u99c5":221,"\u53b3\u5bc6":[33,41,187],"\u53c2\u52a0":[2,3],"\u53c2\u7167\u5143":211,"\u53c2\u7167\u5148":40,"\u53ca\u3073":146,"\u53cb\u4eba":213,"\u53cc\u65b9":10,"\u53cd\u6620":[0,11,12,194],"\u53cd\u8ee2":171,"\u53ce\u307e\u308a\u304d\u3089":33,"\u53ce\u96c6":[0,79],"\u53d6\u308a\u51fa\u3055":211,"\u53d6\u308a\u51fa\u3057":[58,65,214],"\u53d6\u308a\u51fa\u3059":[11,35,58,65,211],"\u53d6\u308a\u5f97\u308b":195,"\u53d6\u308a\u8fbc\u307e":12,"\u53d6\u308a\u8fbc\u307f":37,"\u53d6\u308a\u9664\u3044":64,"\u53d6\u308a\u9664\u304d":[11,160],"\u53d6\u308b":[171,205],"\u53d6\u308c\u308b":100,"\u53d6\u5f97":[],"\u53d7\u3051":[9,33,39,40,41,81,124,147,153,155,171,199,202,205,214,220],"\u53d7\u3051\u308b":[41,203],"\u53d7\u3051\u4ed8\u3051":[35,39,171],"\u53d7\u3051\u53d6\u3063":0,"\u53d7\u3051\u53d6\u308a":[11,147,214],"\u53d7\u4ed8":[40,220],"\u53e4\u3044":[],"\u53e4\u304f":41,"\u53ef\u5426":214,"\u53ef\u5909":[37,88,96,116,205],"\u53ef\u8aad":41,"\u53f3\u4e0a":34,"\u53f3\u4e0b":[34,157],"\u53f3\u8fba":[33,35,37],"\u5404\u51fa":128,"\u5404\u52d9":33,"\u5404\u547d":146,"\u5404\u56fd":12,"\u5404\u7a2e":12,"\u5404\u7d22":214,"\u5404\u8981":76,"\u5404\u8a9e":84,"\u5408\u308f\u305b":[12,39,48,171],"\u5408\u7406":193,"\u5408\u81f4":[214,221],"\u5408\u8a08":[32,41,84,128,146,182,191,208,209],"\u5409\u5ca1":33,"\u5409\u7530":40,"\u540c\u3058":[],"\u540c\u3058\u4f8b":216,"\u540c\u3058\u5024":[147,214],"\u540c\u3058\u578b":76,"\u540c\u3058\u6570":[145,147,199],"\u540c\u3058\u6708":33,"\u540c\u3058\u91cd\u307f":164,"\u540c\u4e00":[40,48,65,74,78,87,146,185,199,206,216],"\u540c\u6642":[0,9,33,64,65,78,128,146,221],"\u540c\u671f":[12,146],"\u540c\u68b1":[17,35,39,41],"\u540c\u69d8":[11,12,65,146,176,205,211,221],"\u540c\u7b49":[33,146,206],"\u540c\u7fa9":180,"\u540d\u4e00":133,"\u540d\u524d":[],"\u540d\u79f0":33,"\u540d\u7b49":61,"\u540dn":133,"\u5411\u3044":[41,79,128,191],"\u5411\u3051":[],"\u5411\u4e0a":[33,37,147,169,199,203],"\u5426\u304b":[107,109,112,153],"\u5426\u5b9a":[],"\u542b\u307e":[6,11,12,24,33,39,41,79,86,88,94,99,100,107,110,118,119,122,125,126,128,132,133,134,135,153,161,164,166,170,171,180,182,183,184,190,193,199,206,214,217],"\u542b\u307e\u308c":[0,40,79,110,118,119,122,128,132,153,166,206],"\u542b\u307e\u308c\u308b":[0,11,12,128,145,158,159,208,211,214],"\u542b\u307f":[33,65,79,110,116],"\u542b\u3080":[9,11,33,39,40,41,76,86,87,107,127,128,131,135,144,170,171,183,184,206,214,216,217],"\u542b\u3080\u5024":[145,214],"\u542b\u3080\u5168\u3066":90,"\u542b\u3081":[12,128,153,170,180],"\u542b\u3081\u308b":[12,37,38,41,98,107,109,110,112,113,128,138,170,180,214],"\u542b\u3093":[11,33,41,79,116,127,128,166,170,171,182,183,188,189,193,211,217],"\u5438\u53ce":214,"\u5468\u4e0a":156,"\u5468\u8fba":[39,166],"\u547c\u3070":[33,40,51,62,64,66,128,171,182,195,214],"\u547c\u3073":[11,69,76,128,145,146,166,211],"\u547c\u3073\u5143":51,"\u547c\u3073\u51fa\u3055":[56,128],"\u547c\u3073\u51fa\u3057":[],"\u547c\u3073\u51fa\u3059":[108,137,154,156,157,162,165,169],"\u547c\u3076":[14,33,39,66,69,90,135,169],"\u547c\u3076\u524d":69,"\u547c\u3093":[41,69,128,206,212],"\u547c\u51fa":[48,59,61,64],"\u547d\u4ee4":[],"\u547d\u540d":[39,110],"\u548c\u5e83":40,"\u552f\u4e00":137,"\u554f\u3044\u5408\u308f":11,"\u554f\u984c":[12,17,33,34,35,36,37,39,40,41,47,51,84,87,117,146,147,170,171,193,209,214],"\u559c\u3073":[16,17],"\u56db\u3064":206,"\u56db\u5247":41,"\u56db\u6368":37,"\u56db\u89d2":176,"\u56db\u89d2\u5f62":[],"\u56de\u52d5":146,"\u56de\u540c":33,"\u56de\u547c":35,"\u56de\u6307\u5b9a":170,"\u56de\u6570":[39,194],"\u56de\u7279":146,"\u56de\u7e70\u308a":146,"\u56de\u9001\u308b":124,"\u56de\u907f":[],"\u56f0\u3063":10,"\u56f0\u96e3":[0,39],"\u56f2\u307e":[159,166],"\u56f2\u307f":[145,158,159,166],"\u56f2\u3080":[40,166,214],"\u56f2\u3093":171,"\u56fa\u5b9a":[41,61,65,88,132,205,214],"\u56fa\u5b9a\u9577":35,"\u56fa\u6709":[56,76],"\u56fd\u3054":212,"\u56fd\u540d":212,"\u56fd\u969b":17,"\u56fd\u969b\u5316":[],"\u570f\u5185":217,"\u5727\u7e2e":[],"\u5730\u56f3":0,"\u5730\u57df":0,"\u5730\u5f62":[155,156],"\u5730\u70b9":[155,221],"\u5730\u7cfb":155,"\u578b\u304b":195,"\u578b\u3068\u3057\u3066":195,"\u578b\u540d":[88,127,128],"\u578b\u5909":37,"\u578b\u60c5":39,"\u578b\u6307":39,"\u578b\u7528":54,"\u57cb\u3081\u8fbc\u307e":12,"\u57cb\u3081\u8fbc\u307f":[159,166],"\u57cb\u3081\u8fbc\u3080":146,"\u57f7\u7b46":[176,215,216],"\u57fa\u6570":171,"\u57fa\u672c":[],"\u57fa\u6e96":[0,12,211,214],"\u57fa\u76e4":51,"\u5831\u4ee5":138,"\u5831\u544a":[],"\u5834\u5408":[],"\u5834\u6240":[],"\u5883\u754c":[39,107,109,112,155],"\u5897\u3048":[76,125,130,138,181,184,216],"\u5897\u3048\u308b":[33,114,139],"\u5897\u3084":[6,7,33,66,76],"\u5897\u3084\u3059":[14,66,76,128,181,194],"\u5897\u5206":128,"\u5897\u52a0":[40,128],"\u5897\u5927":155,"\u58ca\u3057":[33,143],"\u58ca\u3059":39,"\u58ca\u308c":[33,35,37,39,84,117,123,134,143],"\u58ca\u308c\u308b":[33,34,35,37,39,40,41,101,102,103],"\u5909\u3048":86,"\u5909\u3048\u308b":[86,128,193,208],"\u5909\u308a":41,"\u5909\u308f\u3063":[86,193],"\u5909\u308f\u308a":[33,83,84,124,193,206,221],"\u5909\u308f\u308b":[158,159,166,193,208],"\u5909\u5316":[0,33],"\u5909\u63db":[],"\u5909\u6570":[12,14,29,33,36,37,38,39,40,41,62,70,128,171,180],"\u5909\u66f4":[],"\u5909\u66f4\u5f8c":[49,51,53,60,61,64],"\u5909\u66f4\u70b9":[],"\u5916\u90e8":9,"\u591a\u3044":[143,170,171,177,208],"\u591a\u304f":[37,99,110,128,132,147,163,166,170,171,181,184,193,198,203,208,211,214],"\u591a\u3059\u304e":35,"\u591a\u3059\u304e\u308b":128,"\u591a\u5f69":0,"\u591a\u69d8":0,"\u591a\u91cd":144,"\u591a\u9762":0,"\u5927\u304d":[39,76,84,132,143,147,191,194],"\u5927\u304d\u3044":[11,33,37,41,94,128,143,170,191,193,194],"\u5927\u304d\u304f":[35,78,98,143,156,183,211],"\u5927\u304d\u3055":191,"\u5927\u304d\u306a":[132,194,199],"\u5927\u4e08":19,"\u5927\u4e08\u592b":[10,28],"\u5927\u4e8b":[170,180],"\u5927\u5207":0,"\u5927\u5225":211,"\u5927\u62b5":147,"\u5927\u6587":[128,181],"\u5927\u6587\u5b57":[41,132,163,181,214],"\u5927\u898f\u6a21":0,"\u5927\u8cb4":39,"\u5927\u91cf":[11,33,41,132,134,182,183,191,213,214],"\u5927\u95a2":41,"\u592a\u90ce":213,"\u592b\u5fc5":219,"\u5931\u308f":39,"\u5931\u52b9":[83,147],"\u5931\u6557":[12,33,35,37,39,40,41,46,47,70,86,87,90,91,93,94,97,99,101,102,103,118,119,122,123,128,132,134,135,140,170,181,214],"\u5947\u5999":181,"\u5947\u6570":171,"\u5968\u6271\u3044":41,"\u597d\u304d":17,"\u59a5\u5f53":[33,191],"\u59cb\u307e\u3063":[79,177,189],"\u59cb\u307e\u308a":12,"\u59cb\u307e\u308b":[41,64,74,87,128,146,170,171,180,187,189,193,199],"\u59cb\u3081":17,"\u59cb\u70b9":214,"\u5b09\u3057\u304f":10,"\u5b50\u5348\u7dda":155,"\u5b57\u5165":177,"\u5b57\u5217":[37,41,91,92,93,132,170,195],"\u5b57\u5c0f":[128,181],"\u5b58\u5426":61,"\u5b58\u5728":[0,33,34,35,39,40,41,44,51,61,64,65,74,79,91,92,98,110,115,124,128,146,147,153,156,157,185,193,203,205,206,209,212,214,216,221],"\u5b66\u3073":[110,128,155,212],"\u5b66\u3093":217,"\u5b66\u7fd2":[],"\u5b89\u5168":[33,205],"\u5b89\u5b9a":[0,38,78,84],"\u5b89\u5fc3":10,"\u5b8c\u4e86":[12,17,128],"\u5b8c\u5168":[],"\u5b8c\u74a7":184,"\u5b8c\u7d50":10,"\u5b9a\u5024":39,"\u5b9a\u5b50":181,"\u5b9a\u6570":33,"\u5b9a\u7fa9":[11,33,39,41,44,48,56,62,64,67,74,86,87,89,95,97,98,107,110,128,133,145,153,155,158,159,160,161,163,164,166,167,168,170,171,172,180,181,182,183,184,185,195,205,214,216],"\u5b9f\u4f53":51,"\u5b9f\u4f8b":[],"\u5b9f\u51e6":[11,62],"\u5b9f\u6570":195,"\u5b9f\u65bd":12,"\u5b9f\u73fe":[],"\u5b9f\u7528":41,"\u5b9f\u7a3c":144,"\u5b9f\u884c":[],"\u5b9f\u884c\u4f8b":[14,39,44,76,78,79,83,86,88,90,91,92,93,94,97,99,101,102,103,107,108,110,111,113,114,115,116,117,118,119,122,123,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,147,150,153,155,158,159,160,161,163,164,166,167,168,170,171,172,173,174,177,181,182,183,184,187,188,190,192,193,205,211,212,213,214,216,217,218,219,220,221],"\u5b9f\u88c5":[17,33,37,39,41,66,86,110,125,126,128,147,148,155,184,185,198],"\u5b9f\u969b":[32,40,44,66,107,109,110,112,128,130,182,194,208,213,216],"\u5b9f\u9a13":[],"\u5bb9\u91cf":[33,84],"\u5bc6\u9375":[],"\u5bfe\u51e6":41,"\u5bfe\u5fdc":[],"\u5bfe\u7167":164,"\u5bfe\u7b56":[],"\u5bfe\u8a71":[205,214],"\u5bfe\u8c61":[0,9,11,12,14,17,28,33,37,38,41,48,51,52,54,58,61,63,64,65,72,78,85,87,89,91,92,93,95,96,97,98,99,100,101,102,103,110,115,116,117,123,124,128,131,132,134,138,143,144,158,159,161,164,166,168,170,181,182,183,184,199,206,208,213,214,216,217],"\u5bfe\u8c61column":48,"\u5bfe\u8c61ctx":51,"\u5bfe\u8c61cursor":[58,65],"\u5bfe\u8c61id":59,"\u5bfe\u8c61obj":59,"\u5bfe\u8c61object":[48,52,56,59,61,62,68],"\u5bfe\u8c61table":[48,61,64,65],"\u5bfe\u8c61table1":64,"\u5bfe\u8c61table2":64,"\u5c02\u7528":[1,12,17,117,205,218],"\u5c06\u6765":[40,76,107,113,114,125,126,139,155,185,199,205],"\u5c0e\u5165":[14,33,41,78],"\u5c0f\u3055":33,"\u5c0f\u3055\u3044":[11,36,65,128,132,156,170,183,191,193],"\u5c0f\u3055\u304f":[33,41,155,156,172,181,191,194,199],"\u5c0f\u306a\u308a":[],"\u5c0f\u5024":[107,109,110,112],"\u5c0f\u6570":[],"\u5c0f\u6570\u70b9":211,"\u5c0f\u6587\u5b57":[65,132,138,163,174,181,214],"\u5c0f\u897f":40,"\u5c11\u304f":209,"\u5c11\u3057":[28,184],"\u5c11\u3057\u9055\u3044":128,"\u5c11\u306a\u3044":[41,128,169,170,171,172,180],"\u5c11\u306a\u304f":[0,10,33,94,166,170,171,172,194],"\u5c11\u306a\u3051\u308c":132,"\u5c1a\u4e5f":40,"\u5c3a\u5ea6":0,"\u5c55\u958b":[],"\u5c55\u958b\u5f8c":128,"\u5c55\u958b\u7528":37,"\u5c5e\u3057":[72,195,212],"\u5c5e\u3059\u308b":[48,61,65,133],"\u5c5e\u6027":[36,87,113,114,133,138,139,160],"\u5c65\u6b74":12,"\u5c71\u672c":41,"\u5ca9\u4e95":[39,40],"\u5ca9\u677e":33,"\u5cf6\u7530":39,"\u5d8b\u7530":39,"\u5de6\u4e0a":[34,157],"\u5de6\u4e0b":34,"\u5de6\u53f3":214,"\u5de6\u8fba":33,"\u5dee\u3057":12,"\u5dee\u5206":146,"\u5dee\u96c6\u5408":171,"\u5e02\u5185":176,"\u5e02\u771f":33,"\u5e03\u6559":3,"\u5e38\u306b":33,"\u5e73\u5747":[41,128],"\u5e73\u884c":12,"\u5e74\u9f62":[0,132],"\u5e83\u304f":[12,181],"\u5ea6\u3068":37,"\u5ea6\u5206":195,"\u5ea6\u5408\u3044":208,"\u5ea6\u6570":[37,171,211,221],"\u5ea6\u6d6e":195,"\u5ea6\u8868":35,"\u5ea6y":195,"\u5ea7\u6a19":[37,155,156,157,171,176,217],"\u5ea7\u6a19\u5024":[],"\u5ec3\u6b62":[78,177],"\u5f0f\u5168":[170,171],"\u5f0f\u8868":54,"\u5f0f\u96c6\u5408":181,"\u5f15\u3044":171,"\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,145],"\u5f15\u8a9e":214,"\u5f31\u70b9":0,"\u5f35\u3063":[33,40,128,134],"\u5f35\u3089":[33,39,40,48,99,183,184,211],"\u5f35\u308b":[134,170,171],"\u5f35\u308c\u308b":40,"\u5f37\u5236":[33,34,39,41,61,117],"\u5f37\u529b":181,"\u5f37\u5316":[35,37,41],"\u5f53\u3066":[51,124,133,138,191],"\u5f53\u8a72":[61,78],"\u5f62\u5f0f":[],"\u5f62\u614b":[0,28,171,193],"\u5f62\u72b6":176,"\u5f71\u97ff":[12,33,39,40,41,183],"\u5f79\u5272":[164,214],"\u5f79\u7acb\u3061":40,"\u5f85\u3061\u53d7\u3051\u308b":[205,218],"\u5f8c\u304b\u3089":98,"\u5f8c\u4e8c":78,"\u5f8c\u65b9":[],"\u5f8c\u65b9\u4e00\u81f4":[],"\u5f8c\u8005":[44,174,180,221],"\u5f8c\u8ff0":[11,12,65,128,167,181,185],"\u5f93\u3046":35,"\u5f93\u3063":[63,64,65,128,148,199],"\u5f93\u6765":41,"\u5f97\u3089\u308c":[137,161],"\u5f97\u308b":[147,177],"\u5fa9\u53f7":12,"\u5fa9\u65e7":[33,38,52,143],"\u5fc3\u304c":14,"\u5fc3\u914d":23,"\u5fc5\u305a":[64,72,78,109,128,132,163,181,182,205],"\u5fc5\u8981":[],"\u5fc5\u9808":[],"\u5fd8\u308c":[37,76,163],"\u5fd8\u308c\u308b":101,"\u5fdc\u3058":[0,59,146,181],"\u5fdc\u7528":0,"\u5fdc\u7b54":[0,40],"\u601d\u3044":17,"\u601d\u3044\u51fa\u3057":128,"\u601d\u3046":[181,212,216],"\u601d\u3063":16,"\u6027\u5225":0,"\u6027\u80fd":[],"\u6069\u6075":203,"\u60aa\u610f":171,"\u60c5\u5831\u540d":133,"\u60f3\u5b9a":[84,98,213],"\u610f\u5473":[11,28,33,40,44,54,76,88,99,102,116,117,123,124,128,130,131,145,146,170,171,177,180,181,184,193,194,212,214,221],"\u610f\u56f3":[33,39,40,41,164,167,170,183,216],"\u610f\u8b58":132,"\u611f\u3058":10,"\u614e\u91cd":14,"\u6163\u308c":212,"\u6163\u7fd2":39,"\u6210\u308a":[128,170,205],"\u6210\u308a\u7acb\u3063":11,"\u6210\u529f":[],"\u6210\u679c":[],"\u623b\u3057":94,"\u623b\u3063":147,"\u623b\u308a":[39,61],"\u623b\u308a\u5024":[],"\u6240\u5b9a":[132,192,206,208],"\u6240\u5c5e":90,"\u6240\u6709":33,"\u624b\u52d5":147,"\u624b\u6bb5":[11,54],"\u624b\u7d9a\u304d":[56,62],"\u624b\u9593":10,"\u624b\u9806":[],"\u6253\u3061":107,"\u6253\u3061\u5207\u308a":40,"\u6253\u3063":12,"\u6253\u3064":12,"\u6253\u3064\u524d":12,"\u6271\u3044":[33,41,78,187,193,206,211],"\u6271\u3046":[0,2,38,40,82,107,109,112,171,194,208,209],"\u6271\u3048":[51,215],"\u6271\u3048\u308b":[40,41,209],"\u6271\u3063":[34,40,217],"\u6271\u308f":[33,39,40,41,51,128,138,146,170,174,176,208,211],"\u627f\u8a8d":41,"\u628a\u63e1":[10,99],"\u6291\u3048":208,"\u6291\u5236":[39,40,41],"\u6295\u5165":[34,107,208],"\u6295\u7a3f\u5834\u6240":217,"\u629c\u304d\u51fa\u3059":0,"\u629c\u3051":[33,37,40,41],"\u629c\u3051\u308b":214,"\u62bc\u3057":214,"\u62bc\u3059":[17,214],"\u62bd\u51fa":[],"\u62c5\u5f53":12,"\u62c5\u5f53\u8005":12,"\u62e1\u5927":10,"\u62e1\u5f35":[],"\u62e1\u5f35\u578b":211,"\u62e1\u5f35\u5b50":[35,118,119,122,146,178],"\u62ec\u5f27":100,"\u6301\u3061":[11,72,88,127,128,138,145,147,181],"\u6301\u3063":[0,10,39,76,88,110,113,114,116,128,138,139,170,171,174,188],"\u6301\u3064":[0,9,37,64,74,88,100,110,114,128,139,155,167,171,174,176,188,211,212,213,214],"\u6301\u3064\u3059\u3079":128,"\u6301\u3066":[88,192],"\u6301\u3066\u308b":33,"\u6307\u3057":211,"\u6307\u3059\u5024":65,"\u6307\u5b9a":[],"\u6307\u6570":171,"\u6307\u6a19":61,"\u6307\u793a":[56,187,214,218],"\u6307\u91dd":[],"\u6319\u304c\u3063":193,"\u6319\u52d5":[],"\u632f\u821e":155,"\u632f\u821e\u3044":[39,40,41,153,164],"\u633f\u5165":[12,39,56,145,166,214],"\u6368\u3066":37,"\u639b\u3051":171,"\u63a1\u7528":[0,137,205,208],"\u63a2\u3057":[0,128,146,193],"\u63a2\u3059":[177,193,216],"\u63a2\u7d22":0,"\u63a5\u7d9a":[],"\u63a5\u7d9a\u5148":144,"\u63a5\u8fd1":11,"\u63a5\u982d":[37,171,191],"\u63a8\u5968":[23,33,39,41,78,79,128,194,218],"\u63a8\u5b9a":33,"\u63a8\u79fb":78,"\u63a8\u9032":40,"\u63d0\u4f9b":[],"\u63d0\u6848":[],"\u63d0\u6848\u7528":150,"\u63db\u3048":[33,44,61,65,181,220],"\u63db\u3048\u308b":[12,33,44,72],"\u63db\u6642":37,"\u63fa\u308c":220,"\u642d\u8f09":0,"\u643a\u5e2f":0,"\u64a4\u53bb":37,"\u64a4\u5ec3":[35,41,70,85,122,130,145],"\u64cd\u4f5c":[],"\u64ec\u4f3c":[],"\u652f\u63f4":189,"\u6539\u540d":[37,39],"\u6539\u5584":[33,34,37,39,40,41],"\u6539\u884c":[33,37,38,145],"\u6570\u3048":[130,212],"\u6570\u3048\u308b":[128,212],"\u6570\u5024":[],"\u6570\u5b57":[41,110,128,132,146,181,188,193,208],"\u6570\u70b9":[128,195],"\u6570\u73e0":167,"\u6574\u3063":14,"\u6574\u5217":[0,214],"\u6574\u5408":[34,61],"\u6574\u5f62":[33,80,214],"\u6574\u6570":[],"\u6574\u7406":[39,40],"\u6587\u5b57":[],"\u6587\u5b57\u5217":[],"\u6587\u5b57\u6570":[166,171],"\u6587\u5b57\u7a2e":181,"\u6587\u66f8":[],"\u6587\u66f8\u4e2d":[182,183],"\u6587\u66f8\u5185":192,"\u6587\u6cd5":[],"\u6587\u8108":167,"\u65ad\u7247":166,"\u65b0\u3057\u3044":[],"\u65b0\u3057\u304f":[10,41,78,108,128,132,169,172,214],"\u65b0\u305f":[11,48,52,56,64],"\u65b0\u5bbf":221,"\u65b0\u5bbf\u99c5":221,"\u65b0\u65e7":33,"\u65b0\u8a9e":193,"\u65b9\u5411":65,"\u65b9\u5f0f":[0,214,216],"\u65b9\u5f62":[155,156],"\u65b9\u6cd5":[],"\u65e2\u5b58":[0,1,12,33,39,41,44,52,64,106,109,128,143,146,185,203,205,211,214],"\u65e2\u5b9a":39,"\u65e2\u5b9a\u5024":203,"\u65e2\u77e5":107,"\u65e5\u3005":10,"\u65e5\u3054\u3068":107,"\u65e5\u4ed8":[0,12,155],"\u65e5\u6642":[],"\u65e5\u672c":[12,41,156,157,163,170,171,177,187,193,195,221],"\u65e5\u672c\u4eba":187,"\u65e5\u672c\u6e2c":155,"\u65e5\u672c\u8a9e":[0,2,17,19,39,170,171,177,187,193,208],"\u65e5\u6b21":33,"\u6607\u964d":65,"\u6607\u9806":[61,64,65,111,128,212,214,221],"\u660e\u78ba":41,"\u6642\u306b":37,"\u6642\u4ee3":0,"\u6642\u4ee5\u5916":35,"\u6642\u523b":[33,52,79,146,162,188,217],"\u6642\u671f":33,"\u6642\u70b9":[12,39,46,47,51,53,61,78],"\u6642\u9593":[],"\u666e\u53ca":0,"\u666e\u901a":[10,171],"\u6697\u53f7":12,"\u66d6\u6627":33,"\u66f8\u3044":[33,41,170,171,181,217],"\u66f8\u304b":[33,39,185,217],"\u66f8\u304d":[],"\u66f8\u304d\u51fa\u3057":99,"\u66f8\u304d\u51fa\u3059":99,"\u66f8\u304d\u5f8c":206,"\u66f8\u304d\u63db\u3048":[12,21],"\u66f8\u304d\u8fbc\u307e":106,"\u66f8\u304d\u8fbc\u307f":[28,33,102],"\u66f8\u304d\u8fbc\u3080":[33,146],"\u66f8\u304d\u8fbc\u3081\u308b":41,"\u66f8\u304f":[41,170,181,216],"\u66f8\u3051\u308b":[33,39,40,41],"\u66f8\u5f0f":[],"\u66ff\u3048":[],"\u66ff\u3048\u308b":[33,214],"\u66ff\u308f\u308b":33,"\u6700\u3082":[51,84,128],"\u6700\u4e2d":[0,117],"\u6700\u521d":[10,33,37,41,51,79,124,128,132,150,153,158,159,166,170,171,180,181,182,193,203,211,214,216],"\u6700\u5927":[],"\u6700\u5927\u5024":[39,41,107,109,110,112,128,183],"\u6700\u5927\u7dcf":[33,116],"\u6700\u5c0f":[24,25,26,30,33,128,153,203],"\u6700\u5c0f\u5024":[41,107,109,110,112,128,171],"\u6700\u5c0f\u9650":147,"\u6700\u5f8c":[12,33,35,39,51,138,146,147,171,181,193,208,211],"\u6700\u65b0":[2,6,7,8,12,33,37,83],"\u6700\u7d42":[52,76,128],"\u6700\u7d42\u66f4":52,"\u6700\u9069":[33,147],"\u6700\u9577":[37,81,146,171],"\u6708\u6b21":33,"\u6709\u3057":88,"\u6709\u529b":131,"\u6709\u52b9":[0,6,7,8,12,24,28,30,33,37,38,40,41,48,52,61,64,87,88,100,110,117,128,132,138,146,147,166,168,170,181,185,211,218],"\u6709\u7121":[158,211],"\u6709\u7528":[33,41,44,79,88,117,147,191,199,214],"\u6709\u76ca":0,"\u671b\u307e\u3057\u3044":[0,10,12],"\u671f\u5316":[39,51],"\u671f\u5f85":[0,177,181,193,211],"\u6728\u4e0a":65,"\u672a\u4f7f":41,"\u672a\u4f7f\u7528":205,"\u672a\u521d":39,"\u672a\u5b9a":211,"\u672a\u5b9a\u7fa9":41,"\u672a\u5b9f\u88c5":110,"\u672a\u5bfe":39,"\u672a\u6e80":[65,170],"\u672a\u77e5":38,"\u672a\u8a2d":39,"\u672a\u958b\u653e":35,"\u672b\u5c3e":[56,61,65,107,181],"\u672b\u6c38":33,"\u672c\u4f53":3,"\u672c\u5f53":[187,220],"\u672c\u6587":[160,216],"\u672c\u756a":[12,33,109],"\u672c\u8a9e":193,"\u672c\u8cea":146,"\u6749\u672c":33,"\u6749\u672c\u6dbc":33,"\u6751\u4e0a":[33,40,41],"\u6761\u4ef6":[],"\u6761\u4ef6\u5f0f":[],"\u6771\u4eac":[155,193,206,208,221],"\u6771\u4eac\u90fd":[193,206,208],"\u6790\u5668":[0,193],"\u6790\u7cfb":171,"\u679c\u305f":214,"\u67af\u308c":[1,203],"\u67d4\u8edf":[0,164,169],"\u6817\u5c71":[33,41],"\u682a\u5f0f":[33,41],"\u683c\u7d0d":[],"\u6848\u5185":[10,12,33],"\u68ee\u7530":213,"\u691c\u51fa":[],"\u691c\u67fb":61,"\u691c\u7d22\u4f8b":[],"\u691c\u7d22id":64,"\u691c\u7d22key":64,"\u691c\u8a0e":[182,183,184,203,208],"\u691c\u8a3c":[41,144],"\u6955\u5186":[155,156],"\u6975\u4ed8":[155,156],"\u697d\u3057":[206,208],"\u697d\u3057\u3044":[206,208],"\u6982\u5ff5":78,"\u69cb\u3044":[17,159,166],"\u69cb\u6210":[11,12,24,25,26,30,41,203,214],"\u69cb\u6587":[],"\u69cb\u7bc9":[],"\u69cb\u9020":[0,11,51,64,79,191,213],"\u69cb\u9020\u4f53":[41,51,58,62],"\u69d8\u3005":[],"\u6a19\u6e96":[33,34,38,41,78,84,85,87,89,95,96,98,100,104,105,106,120,129,133,144,145,147,148,182,205,214],"\u6a19\u8a18":41,"\u6a29\u8868":41,"\u6a29\u9650":[28,33,40,218],"\u6a2a\u5c71":[33,40,41],"\u6a5f\u68b0":41,"\u6a5f\u80fd":[],"\u6b20\u70b9":0,"\u6b20\u843d":40,"\u6b21\u56de":[12,78],"\u6b21\u671f":12,"\u6b21\u90ce":213,"\u6b32\u3057\u3044":185,"\u6b53\u8fce":3,"\u6b62\u3081":[33,41,66],"\u6b62\u3081\u308b":44,"\u6b63\u3057\u3044":[33,170,180,188,189],"\u6b63\u3057\u304f":[33,39,40,41,170,187],"\u6b63\u5e38":[12,33,110,146],"\u6b63\u5f0f":41,"\u6b63\u78ba":[108,211,214],"\u6b63\u898f":[],"\u6b63\u898f\u5316":[39,113,166],"\u6b66\u8005":33,"\u6b8a\u547d":146,"\u6b8b\u3063":[35,40,134],"\u6b8b\u308a":[78,128,132,136,180],"\u6b8b\u308b":37,"\u6b8b\u5ff5":211,"\u6bb5\u843d":[48,87,88],"\u6bb5\u968e":194,"\u6bd4\u3079":[41,172],"\u6bd4\u8f03":[],"\u6c17\u306b":[17,61,88,107],"\u6c17\u8efd":[10,41],"\u6c38\u7d9a":[],"\u6c42\u307e\u308a":0,"\u6c42\u3081":[0,154],"\u6c42\u3081\u308b":[0,155,156,212],"\u6c4e\u7528":[145,146,147],"\u6c7a\u307e\u308a":180,"\u6c7a\u307e\u308b":214,"\u6c7a\u3081":[86,107,128,132],"\u6c7a\u3081\u308b":[11,128],"\u6c7a\u5b9a":128,"\u6cbf\u3046":41,"\u6ce8\u610f":[12,37,40,64,76,99,117,124,128,132,146,147,160,168,170,171,194,199,208,211,212,214,219],"\u6ce8\u76ee":[128,212],"\u6ce8\u8a18":40,"\u6d0b\u5fd7":41,"\u6d0b\u723e":37,"\u6d3b\u304b\u3059":128,"\u6d3b\u7528":[33,203],"\u6d41\u3057":12,"\u6d41\u308c":[],"\u6d41\u91cf":199,"\u6d45\u898b":40,"\u6d69\u4e8c":39,"\u6d6e\u52d5":[],"\u6d88\u3048":191,"\u6d88\u305b":147,"\u6d88\u53bb":40,"\u6d88\u8cbb":172,"\u6df1\u523b":[39,41,208],"\u6df7\u3056\u3063":193,"\u6df7\u305c":[131,211],"\u6df7\u305c\u308b":76,"\u6df7\u5728":[33,148],"\u6dfb\u4ed8":39,"\u6e08\u307f":[10,12,24,25,26,30,33,37,39,40,48,87,100,111,138,180,187,188,189,195,203],"\u6e08\u3080":33,"\u6e1b\u3063":33,"\u6e1b\u3089":[33,39,66,188,191,220],"\u6e1b\u308b":177,"\u6e1b\u5c11\u5f8c":66,"\u6e1b\u7b97":[],"\u6e21\u3055":[11,39,40,62,66,155],"\u6e21\u3057":[6,7,8,11,33,41,100,124,137,143,170,214,218],"\u6e21\u3059":[33,38,171,214],"\u6e2c\u4f4d":0,"\u6e2c\u5730":[155,156,157,195,211,221],"\u6e2c\u5730\u7cfb":195,"\u6e2c\u5b9a":146,"\u6e2c\u7528":34,"\u6e80\u3055":40,"\u6e80\u3059":[33,40],"\u6e80\u305f":[11,33,134,167,181,221],"\u6e96\u5099":[],"\u6e96\u62e0":[40,147],"\u6f0f\u308c":[0,12,39,169,220],"\u6f14\u7b97":[28,33,35,39,40,41,64,169,171],"\u6f14\u7b97\u5b50":[],"\u6f22\u5b57":[163,177,193],"\u6fc1\u70b9":174,"\u7027\u5185":40,"\u70b9\u4ee5\u4e0b":211,"\u70b9\u6570":[],"\u70b9\u9593":176,"\u7121\u3057":[99,108,181],"\u7121\u52b9":[6,7,8,28,33,38,39,40,53,64,65,117,128,145,147,170,187],"\u7121\u540d":[61,64],"\u7121\u8996":[33,35,37,39,40,41,64,65,97,98,113,124,128,138,145,163,170,180,191,193,208],"\u7121\u9650":[33,35,39,41],"\u7121\u99c4":0,"\u7279\u306b":[11,12],"\u7279\u5225":[28,46,54,82,128,138,170,181,187],"\u7279\u5316":[17,171],"\u7279\u5b9a":[],"\u7279\u6027":191,"\u7279\u6709":[],"\u7279\u6b8a":[],"\u72b6\u614b":[0,10,12,24,25,26,30,33,35,39,41,44,51,84,144,145,187,208,214],"\u72b6\u6cc1":[0,56,128,171,208],"\u72ec\u7acb":108,"\u72ec\u81ea":[],"\u72ed\u3081\u308b":99,"\u7372\u5f97":[33,101,103],"\u7389\u91ce":41,"\u73fe\u308c":138,"\u73fe\u308c\u308b":208,"\u73fe\u4ee3":0,"\u73fe\u5728":[0,12,33,44,47,51,52,58,61,62,83,86,90,106,108,130,132,134,135,144,146,162,176,214,215,217],"\u73fe\u5728\u5730":217,"\u73fe\u5b9f":212,"\u73fe\u72b6":78,"\u73fe\u983b":41,"\u7403\u9762":[155,156],"\u7406\u7531":[],"\u7406\u89e3":[128,214],"\u7406\u95a2":62,"\u74b0\u5883":[],"\u751f\u3058":[85,89,95,104,105,106],"\u751f\u6210":[],"\u7528\u3044":[],"\u7528\u3044\u308b":[0,61,205,211,213,214,215,221],"\u7528\u5909":41,"\u7528\u610f":[11,12,28,61,128,146,155,187,188,189,190,193,194],"\u7528\u79d8":[],"\u7528\u8a9e\u96c6":[],"\u7528\u9014":[0,23,24,25,26,30,31,40,41,76,79,128,181,185,191,203],"\u7530\u6cbc":41,"\u7530\u8fba":40,"\u7531\u6765":169,"\u753b\u9762":[12,34,41],"\u7551\u30b1":[33,41],"\u7551\u30f6":41,"\u756a\u53f7":[12,40,41,48,74,127,144,145,146,181,199,203,205,218],"\u756a\u76ee":[40,64,65,88,109,113,128,138,170,171,181,182,211,214],"\u7570\u306a\u3063":[33,65],"\u7570\u306a\u308a":[41,170],"\u7570\u306a\u308b":[],"\u7570\u5e38":[84,146],"\u7591\u4f3c":[39,40,41,74,100,165],"\u7591\u554f":216,"\u767a\u63ee":0,"\u767a\u751f":[0,12,28,33,34,39,40,41,51,61,64,79,87,117,132,208],"\u767a\u884c":205,"\u767b\u9332":[],"\u7686\u5ddd":41,"\u76ee\u304f\u3089\u3044":132,"\u76ee\u4ee5\u964d":128,"\u76ee\u5b89":12,"\u76ee\u7684":[28,40,107,138],"\u76ee\u8996":79,"\u76f4\u3057":[33,194],"\u76f4\u3059":123,"\u76f4\u4e0b":37,"\u76f4\u524d":56,"\u76f4\u5f8c":51,"\u76f4\u611f":219,"\u76f4\u63a5":[98,217],"\u76f8\u5bfe":[12,37,128],"\u76f8\u5bfe\u30d1\u30b9":41,"\u76f8\u5f53":[79,212,214,221],"\u76f8\u5fdc":64,"\u76f8\u624b":10,"\u7701\u30b9\u30da\u30fc\u30b9\u30d0\u30fc\u30b8\u30e7\u30f3":33,"\u7701\u7565":[],"\u771f\u306a\u3089":171,"\u771f\u507d":[33,40,170,171,195,211],"\u771f\u507d\u5024":[],"\u77e5\u3089":193,"\u77e5\u308b":212,"\u77e5\u8b58":146,"\u77e9\u5f62":[0,157,221],"\u77ed\u3044":[33,35,217],"\u77ed\u304f":[0,172],"\u77ed\u6642\u9593":0,"\u77ed\u7e2e":[6,7,33],"\u7834\u58ca":64,"\u7834\u68c4":[51,62],"\u78ba\u4fdd":[51,54,59,209],"\u78ba\u5b9a":131,"\u78ba\u5b9f":188,"\u78ba\u7387":131,"\u78ba\u8a8d":[],"\u78ef\u90e8":40,"\u793a\u3055":133,"\u793a\u3057":[12,45,82,86,107,113,127,155,161,176,182,193,202,205,208,212,214,216,218],"\u793a\u3059":[44,79,82,97,100,101,110,127,128,133,153,155,156,157,158,159,160,161,163,164,166,167,168,170,171,182,183,184,199,211,219],"\u79cb\u8449":221,"\u79d2\u3088\u308a":36,"\u79d2\u5358":[195,211],"\u79d2\u5f62":195,"\u79d2\u60c5":37,"\u79d2\u6570":[79,171,195,211,217],"\u79d2\u8868":[171,208,211,221],"\u79d2\u9593":37,"\u79d8\u5bc6":12,"\u79fb\u52d5":[12,16,31,37,39,86,106],"\u79fb\u884c":[37,78],"\u7a0b\u5ea6":[37,40,214],"\u7a2e\u5225":113,"\u7a2e\u985e":[],"\u7a32\u7530":40,"\u7a4d\u307f\u91cd\u306a\u3063":40,"\u7a4d\u7528":128,"\u7a4d\u7b97":[11,128],"\u7a7a\u304d":[84,209],"\u7a7a\u6587":[41,91,92,93,170,195],"\u7a7a\u767d":[0,33,100,113,138,145,170,190,193,208,214],"\u7a7a\u914d":127,"\u7a81\u7136":40,"\u7acb\u3061":79,"\u7acb\u3061\u4e0a\u304c\u3063":146,"\u7acb\u3061\u4e0a\u3052":146,"\u7acb\u3064":[143,181],"\u7acb\u3064\u304b":193,"\u7acb\u5834":3,"\u7adc\u4e4b":33,"\u7aef\u672b":0,"\u7b26\u53f7":[],"\u7b2c\u4e00":214,"\u7b2c\u4e8c":155,"\u7b49\u3057\u3044":[11,61,128,170,171],"\u7b49\u3057\u304f":[11,170,171],"\u7b49\u4fa1":[],"\u7b49\u5024":35,"\u7b87\u6240":[12,40,79,166],"\u7b97\u51fa":[39,41],"\u7b97\u8853":[],"\u7ba1\u7406":[],"\u7bc4\u56f2":[],"\u7bc4\u56f2\u5916":41,"\u7be0\u7530":[33,41],"\u7c21\u5358":[],"\u7c21\u6613":[41,155,203],"\u7c21\u7565":[40,161],"\u7cbe\u5ea6":33,"\u7cfb\u5ea7":[156,157],"\u7d00\u5143":33,"\u7d14\u7c8b":193,"\u7d1b\u3089\u308f\u3057\u3044":181,"\u7d20\u65b9":0,"\u7d20\u6734":212,"\u7d20\u89e3":[0,28,171,193],"\u7d22\u6642":35,"\u7d22\u7528":[],"\u7d30\u5206":211,"\u7d39\u4ecb":[3,12,41,110,128,217],"\u7d42\u3048":12,"\u7d42\u308f\u3063":[33,69],"\u7d42\u308f\u308b":[170,171,172],"\u7d42\u4e86":[],"\u7d42\u4e86\u30bf\u30b0":158,"\u7d42\u7aef":[39,51,52,54],"\u7d44\u307f\u5408\u308f":[0,11,128,132,153,163],"\u7d44\u307f\u5408\u308f\u305b":[0,11,12,41,87,193,208,214],"\u7d44\u307f\u5408\u308f\u305b\u308b":163,"\u7d44\u307f\u8fbc\u307f":[],"\u7d44\u307f\u8fbc\u3080":[0,11,147],"\u7d44\u307f\u8fbc\u3093":[0,33,41],"\u7d44\u5408":164,"\u7d44\u8fbc":[84,85,87,89,95,96,98,104,105,106,120,129,133,154,156,157,162,165,195],"\u7d44\u8fbc\u578b":[],"\u7d4c\u7531":[12,35,39,41,84,85,87,89,95,96,98,104,105,106,120,129,133,146],"\u7d4c\u7def":[195,211,221],"\u7d4c\u7def\u5ea6":[],"\u7d4c\u904e":[37,46,61,78,79,130,171,195,211,217],"\u7d50\u3073\u3064\u3044":9,"\u7d50\u3073\u3064\u304f":9,"\u7d50\u5408":[11,169,170],"\u7d50\u5408\u5f0f":[],"\u7d50\u57ce":41,"\u7d50\u679c":[],"\u7d5e\u308a\u8fbc\u307f":[0,214],"\u7d5e\u308a\u8fbc\u3080":[41,128,189],"\u7d5e\u308a\u8fbc\u3093":[0,40],"\u7d5e\u8fbc":[],"\u7d71\u5408":[0,39,40],"\u7d76\u5bfe":[118,119,122],"\u7d99\u627f":40,"\u7d99\u7d9a":[21,39,130,145],"\u7d9a\u3044":208,"\u7d9a\u304d":100,"\u7d9a\u3051":146,"\u7d9a\u3051\u308b":193,"\u7dad\u6301":[0,183,184,199],"\u7db2\u7f85":147,"\u7dcf\u91cf":194,"\u7de8\u96c6":[],"\u7de9\u3084\u304b":33,"\u7de9\u548c":194,"\u7e26\u68d2":132,"\u7e4b\u3052":41,"\u7e4b\u3052\u308b":10,"\u7e70\u308a\u8fd4\u3057":[17,146,171],"\u7e70\u308a\u8fd4\u3057\u6570":146,"\u7e70\u308a\u8fd4\u3059":35,"\u7f6e\u3044":[12,41],"\u7f6e\u304b":[28,147,148,180],"\u7f6e\u304d":[12,33,35,44,61,65,181,220],"\u7f6e\u304d\u63db\u3048":[17,41,145,170,185],"\u7f6e\u304f":[28,33,194],"\u7f6e\u304f\u4f8b":28,"\u7f6e\u63db":[],"\u7f72\u540d":[],"\u7fa9\u8a9e":180,"\u7ffb\u8a33":[],"\u8003\u3048":[0,10,128,134,170,171,194,199,212,214],"\u8003\u3048\u308b":[182,183,184],"\u8003\u3048\u65b9":41,"\u8003\u616e":[184,208,220],"\u80a5\u5927":41,"\u811a\u6ce8":[89,155,156,157,214],"\u81a8\u5927":0,"\u81ea\u4f53":[41,170],"\u81ea\u5206":[10,17,23,107,146,147,177],"\u81ea\u52d5":[12,17,33,37,39,41,48,64,74,99,118,119,122,143,146,147,170,171,191,202,213,214,219],"\u81ea\u52d5\u5207\u308a":41,"\u81ea\u52d5\u7684":146,"\u81ea\u5df1":217,"\u81ea\u5df1\u7d39":217,"\u81ea\u7531":[0,11,74,205],"\u81ea\u8eab":[33,37,39,138,145,180],"\u81f3\u308b":211,"\u81f4\u547d":39,"\u8208\u5473":[0,33,181],"\u826f\u3044":[10,216],"\u826f\u3044\u4f8b":10,"\u826f\u304f":[33,216],"\u826f\u4e8c":41,"\u82b1\u5b50":213,"\u82e6\u624b":0,"\u82f1\u8a9e":[2,12,17,19,37,41,193],"\u840e\u7e2e":10,"\u843d\u3061":[35,40],"\u843d\u3061\u308b":[35,37,40],"\u8457\u4f5c":41,"\u884c\u3044":[11,12,33,61,64,65,144,145,146,164,206,208,213,214,216,217],"\u884c\u3046":[10,12,14,35,39,41,65,132,144,155,164,192,203,206,213,216,217,219,221],"\u884c\u3048":[14,41,164,170,214],"\u884c\u3048\u308b":[39,213],"\u884c\u3063":[12,14,41,212,221],"\u884c\u306a\u308f":39,"\u884c\u308f":[128,144,146,213],"\u884c\u6307\u5411":0,"\u884c\u6570":37,"\u884c\u672b":181,"\u884c\u756a":[37,79],"\u884c\u76ee":[12,79,146],"\u884c\u982d":181,"\u8868\u3057":[11,74,78,79,82,128,176,181,184,195,214],"\u8868\u3059":[11,87,117,138,155,165,176,181,211,213],"\u8868\u3059\u578b":195,"\u8868\u308f":61,"\u8868\u73fe":[],"\u8868\u793a":[],"\u8868\u8a08":180,"\u8868\u8a18":[12,17,37,39,40,76,155,171,195,211,220,221],"\u88d5\u4e5f":41,"\u88dc\u3046":0,"\u88dc\u5b8c":[],"\u88dc\u5b8c\u8a9e":187,"\u88dc\u6b63":[],"\u88dc\u8db3":147,"\u8907\u6570":[],"\u8907\u96d1":[11,33,39,40,128,171,181],"\u897f\u66a6":171,"\u8981\u6c42":[10,40,167,202,214],"\u8981\u7d20":[11,33,39,40,64,76,79,82,88,100,146,166,214],"\u898b\u3048\u308b":[6,7],"\u898b\u305b":185,"\u898b\u3064":[33,35,39,131],"\u898b\u3064\u304b\u3063":[128,189,193],"\u898b\u3064\u304b\u3089":64,"\u898b\u3064\u304b\u308a":[128,163,193],"\u898b\u3064\u304b\u308b":39,"\u898b\u3064\u304b\u308c":10,"\u898b\u3064\u3051":[10,34,39,128,187,193],"\u898b\u3064\u3051\u308b":[90,128,135,147,163,174,177,193],"\u898b\u3066":[79,86,110,128,147,187],"\u898b\u306a\u3057":65,"\u898b\u308b":[82,86,128],"\u898b\u4ed8":40,"\u898b\u4ed8\u3051":40,"\u898b\u76f4\u3057":41,"\u898b\u7a4d":33,"\u898b\u7a4d\u308b":209,"\u898b\u8fbc\u3081":41,"\u898f\u5247":[39,110],"\u898f\u683c":65,"\u8996\u899a":[0,127],"\u89a7\u4e0b":14,"\u89aa\u5207":35,"\u89b3\u70b9":[41,161,171,209],"\u89e3\u50cf":35,"\u89e3\u653e":[33,41,47,51,58,61,65,69,94,101,103,130],"\u89e3\u6790":[],"\u89e3\u6c7a":[],"\u89e3\u6c7a\u7b56":10,"\u89e3\u6d88":[33,34,40,61,76,96],"\u89e3\u91c8":[11,35,98,170],"\u89e3\u9664":[34,61,85,102,118,119,145],"\u89e6\u308b":33,"\u89e6\u308c":214,"\u89e6\u308c\u308b":193,"\u8a00\u3044":[33,72,167],"\u8a00\u3046":[76,108,184,187],"\u8a00\u3048":[170,208],"\u8a00\u53ca":[167,217],"\u8a00\u8a9e":[],"\u8a00\u8a9e\u540d":17,"\u8a02\u6b63":180,"\u8a08\u6e2c":[14,34,37],"\u8a08\u7b97":[0,34,39,40,41,125,128,130,154,155,156,171,176,182,183,184,187,188,190,194,195,221],"\u8a18\u4e8b":[12,172,216],"\u8a18\u53f7":[35,145,193,206,208,214],"\u8a18\u6cd5":[171,216],"\u8a18\u8f09":[12,39],"\u8a18\u8ff0":[11,33,145,146,214,216,217],"\u8a18\u9332":[0,33,39,74,118,122],"\u8a2d\u5b9a":[],"\u8a2d\u5b9a\u5024":[34,209],"\u8a2d\u5b9a\u6e08\u307f":203,"\u8a2d\u6a02":37,"\u8a2d\u8a08":[128,203],"\u8a55\u4fa1":[11,33,40,125,127,167,170,171,181],"\u8a66\u3057":[10,33],"\u8a66\u3059":[6,7,193,198],"\u8a66\u3059\u4f8b":193,"\u8a66\u884c":0,"\u8a71\u3057":3,"\u8a71\u984c":2,"\u8a72\u5f53":[41,47,48,61,64,65,115,153,158,159,161,166,216],"\u8a72\u5f53\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":33,"\u8a73\u3057\u304f":[0,211,214],"\u8a73\u7d30":[1,14,17,24,25,26,28,30,33,39,40,41,47,60,63,76,79,81,86,88,94,99,110,116,118,119,122,127,128,130,132,134,135,136,138,143,146,147,148,164,170,171,177,180,181,194,195,203,208,212,214,221],"\u8a8d\u8a3c":[],"\u8a8d\u8b58":10,"\u8a9e\u4ee5":[171,193],"\u8a9e\u5165":177,"\u8a9e\u53e5":[33,40,213],"\u8a9e\u5f59":[],"\u8a9e\u6271":206,"\u8a9e\u691c":128,"\u8a9e\u7248":12,"\u8a9e\u7528":193,"\u8aa4\u3063":[12,33,39,40,41],"\u8aa4\u308a":[33,39,40,41],"\u8aa4\u52d5\u4f5c":33,"\u8aa4\u5b57":[33,35,37,39,40,180],"\u8aa4\u5dee":[37,155,156],"\u8aac\u660e":[],"\u8aad\u307f":[],"\u8aad\u307f\u3084\u3059\u3044":38,"\u8aad\u307f\u51fa\u3057":0,"\u8aad\u307f\u53d6\u308a":[90,100,135,145],"\u8aad\u307f\u8fbc\u307f":[37,40,41,118,122,126,180,214],"\u8aad\u307f\u8fbc\u3080":[34,126],"\u8aad\u307f\u8fbc\u3081\u308b":98,"\u8aad\u307f\u8fbc\u3093":[126,205],"\u8aad\u307f\u98db\u3070":214,"\u8aad\u3081":39,"\u8aad\u3093":[3,21],"\u8ab0\u304b":3,"\u8ab0\u304c":217,"\u8ab0\u3067":41,"\u8ab2\u7a0b":40,"\u8ab2\u984c":[],"\u8abf\u3079":[56,61,156,157,212],"\u8abf\u3079\u308b":[40,156,157,209],"\u8abf\u6574":[128,169,193,208,209],"\u8abf\u67fb":[33,116],"\u8ad6\u7406":[],"\u8ad6\u7406\u548c":[],"\u8af8\u6761":32,"\u8b66\u544a":[6,7,35,38,39,40,41,78,128],"\u8b70\u8ad6":19,"\u8ca0\u62c5":10,"\u8ca0\u6570":[39,46],"\u8ca0\u8377":[35,147],"\u8ca2\u732e":40,"\u8ce2\u304f":94,"\u8d64\u9053":155,"\u8d70\u67fb":41,"\u8d77\u3053\u3063":[90,135],"\u8d77\u3053\u308a":220,"\u8d77\u52d5":[],"\u8d77\u6e90":211,"\u8d85\u3048":[40,208],"\u8d85\u3048\u308b":[39,65,191,209,211],"\u8d85\u904e":[40,209],"\u8d8a\u3048":[33,41,208],"\u8d8a\u3048\u308b":[33,41,107,208],"\u8db3\u3057":171,"\u8db3\u308a":[37,180],"\u8ddd\u96e2":[0,34,39,154,155,156,171,176,221],"\u8efd\u3044":[90,115,135],"\u8f09\u305b\u308b":12,"\u8f9e\u66f8":[26,33,34,35,39,40,41,193,208],"\u8f9e\u691c":[37,171,191],"\u8fbc\u307f":[106,180],"\u8fd1\u3044":[65,144,185],"\u8fd1\u3044\u9806":176,"\u8fd1\u304f":[0,171,176],"\u8fd1\u3055":171,"\u8fd1\u4f3c":[37,39,155,156],"\u8fd1\u508d":[],"\u8fd4\u3055":[39,41,53,61,78,84,100,131],"\u8fd4\u3057":[11,33,40,41,46,47,48,49,51,52,53,56,58,60,61,64,65,66,68,70,83,87,88,90,91,92,93,97,101,102,103,108,111,114,115,116,117,123,124,125,126,127,128,130,131,136,137,138,139,140,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,171,183,184,187,188,189,190,199,214,217,220,221],"\u8fd4\u3059":[33,34,35,37,39,40,41,48,51,54,66,85,89,94,95,96,104,105,106,109,128,131,137,145,146,153,162,171,199,205,221],"\u8fd4\u3059\u304b":131,"\u8fd4\u3059\u4f8b":168,"\u8fd4\u3059\u65b0\u3057\u3044":33,"\u8fd4\u3063":[33,41,137,170,171],"\u8fd4\u308a":[110,128,137,212,221],"\u8fd4\u308a\u5024":[33,40,41],"\u8fd4\u308b":[33,35],"\u8fd4\u4fe1":[10,216,217],"\u8fd4\u4fe1\u5143":217,"\u8fd4\u4fe1\u5148":217,"\u8fd4\u5024":[],"\u8fd4\u5374":[133,214],"\u8ff0\u3079":214,"\u8ff0\u8a9e":33,"\u8ffd\u52a0":[],"\u8ffd\u8a18":[12,33,39],"\u8ffd\u8de1":[],"\u9000\u907f":94,"\u9001\u3063":[3,16,17,19],"\u9001\u308a":[12,205],"\u9001\u308a\u65b9":[],"\u9001\u308b":[17,19,199,205],"\u9001\u4fe1":[],"\u9006\u306b":[213,217],"\u9006\u5f15":213,"\u9006\u5f15\u304d":[],"\u9006\u6587\u66f8\u51fa":41,"\u9006\u9806":214,"\u9010\u6b21":[0,41,181,193],"\u9014\u4e2d":[12,39,41,145,187,188,205],"\u901a\u308a":[6,7,8,12,21,28,30,44,50,86,88,97,98,107,108,109,110,111,113,127,128,131,132,133,138,143,147,153,155,156,158,159,160,161,163,164,166,167,168,170,171,176,177,181,182,183,184,190,193,194,208,216],"\u901a\u4fe1":[],"\u901a\u5e38":[33,39,41,44,51,66,74,79,88,94,99,108,116,117,127,128,130,138,147,170,174,177,180,194,195,211,214],"\u901a\u77e5":[12,124],"\u901f\u3044":[33,41,44,191],"\u901f\u304f":[28,33,132,213],"\u901f\u3084\u304b":78,"\u901f\u5ea6":[33,37,40,146,191,213],"\u9023\u643a":0,"\u9023\u7d50":[33,39,40,61,216],"\u9023\u7d61":17,"\u9023\u7d9a":[33,40,61,138,188,193,206,208],"\u9032\u3081":[],"\u9032\u3093":0,"\u9032\u6570":[84,171],"\u9045\u3044":[155,182,191],"\u9045\u304f":[33,156,170,171,181,184,212],"\u904b\u7528":0,"\u904e\u7a0b":74,"\u9054\u3057":194,"\u9054\u3059\u308b":65,"\u9054\u6210":107,"\u9055\u3046":[35,110],"\u9055\u3063":187,"\u9069\u3057":[0,132,172,182,183],"\u9069\u5207":[0,33,35,41,107,110,128,132,138,146,181,184,193,214],"\u9069\u5408":[193,208,214],"\u9069\u5408\u7387":193,"\u9069\u5b9c":[12,41],"\u9069\u6642":56,"\u9069\u7528":[],"\u9078\u3073":189,"\u9078\u3076":[0,128,147],"\u9078\u3079":[5,128],"\u9078\u3093":[80,132],"\u9078\u629e":[],"\u907f\u3051\u308b":128,"\u90e8\u5206":[],"\u90fd\u6c11":[206,208],"\u914d\u4e0b":[12,148],"\u914d\u5217":[],"\u914d\u5e03":[23,24,25,26,30,31,39,41],"\u914d\u7f6e":[12,214],"\u91cd\u3044":[0,99,128],"\u91cd\u304f":208,"\u91cd\u306a\u3063":40,"\u91cd\u307f":[],"\u91cd\u307f\u3064\u304d":41,"\u91cd\u307f\u4ed8\u304d":[],"\u91cd\u307f\u4ed8\u3051":[128,208],"\u91cd\u8907":[33,41,64],"\u91cd\u8981":[0,10,12,14,28,33,47,51,76,77,128,132,138,147,172,182,183,184,193,199,215],"\u91cd\u8996":[172,208],"\u91ce\u9996":41,"\u91cf\u6307":181,"\u91cf\u8a08":34,"\u9234\u6728":39,"\u932f\u8aa4":0,"\u9577\u3044":33,"\u9577\u3055":[39,48,61,64,65,67,146,211],"\u9577\u3059\u304e\u308b":40,"\u9577\u4ee5\u4e0a":[61,64],"\u9577\u5185":[33,41],"\u9577\u5185\u6b69":[33,41],"\u9577\u578b":[65,88,116],"\u9577\u65b9\u5f62":37,"\u9577\u6642\u9593":[124,143],"\u9577\u751f\u304d":132,"\u9577\u91ce":41,"\u9589\u3058":[37,134,191],"\u9589\u3058\u308b":[33,34,37,191],"\u958b\u3044":[33,35,37,40,85,96,134,143,174],"\u958b\u304b":[33,51,143],"\u958b\u304d":[47,52,123,134,194],"\u958b\u304f":[33,37,39,47,174,194,214],"\u958b\u304f\u969b":39,"\u958b\u3051":[33,39],"\u958b\u3051\u308b":[],"\u958b\u3053":52,"\u958b\u59cb":[14,37,40,41,61,90,135,146,155,158],"\u958b\u653e":[33,103],"\u958b\u767a":[],"\u9593\u9055\u3063":[33,37,39,40,41,143,188,189],"\u95a2\u308f\u3089":[128,146],"\u95a2\u4fc2":[],"\u95a2\u4fc2\u5f0f":[],"\u95a2\u6570":[],"\u95a2\u9023":[],"\u95b2\u89a7":218,"\u95be\u5024":[],"\u9632\u304e":[40,134],"\u9632\u3050":[171,184],"\u964d\u9806":[64,65,128,131,214],"\u9650\u3063":61,"\u9650\u3089":10,"\u9650\u308a":[11,61,74,100,137,206,208],"\u9650\u5b9a":[143,181],"\u9650\u6587":[37,132],"\u9664\u3044":[107,109,112,146,161,166],"\u9664\u304f":39,"\u9664\u3051":64,"\u9664\u53bb":[35,40,136,160,192],"\u9664\u5916":98,"\u9664\u7b97":[],"\u9665\u3063":39,"\u968e\u5c64":11,"\u96a3\u308a\u5408\u3063":193,"\u96a3\u63a5":[0,170],"\u96c5\u5e83":41,"\u96c6\u307e\u3063":212,"\u96c6\u307e\u308a":128,"\u96c6\u3081":212,"\u96c6\u5408":[39,64,72,76,128,169,181],"\u96e2\u308c":221,"\u96e3\u3057\u3044":0,"\u9759\u7684":[],"\u975e\u308f":206,"\u975e\u4e92":[33,39,40,41],"\u975e\u4e92\u63db":[33,37,41],"\u975e\u4f9d":24,"\u975e\u516c\u958b":12,"\u975e\u5206":128,"\u975e\u5e38":[39,181,182,183,184,199],"\u975e\u63a8":[33,37,39,40,41,132,155],"\u975e\u63a8\u5968":[33,39],"\u975eascii":193,"\u9805\u76ee":[33,34,44,84,91,92,93,128,132,141,199,203,215],"\u9806\u4f4d":56,"\u9806\u5e8f":[128,133,208,214],"\u9806\u6b21":[144,145,205,214],"\u9806\u756a":[58,65,145,170,208,214],"\u9818\u57df":[28,39,41,61,64,221],"\u982d\u6587":205,"\u982d\u8f9e":191,"\u983b\u51fa":33,"\u983b\u5ea6":[33,131],"\u983b\u7e41":[28,64],"\u9855\u8457":193,"\u985e\u4f3c":[],"\u985e\u7d39":208,"\u985e\u7fa9":128,"\u99c4\u76ee":10,"\u9ad8\u3044":[0,84,128,131,147,193,214],"\u9ad8\u3044\u9806":214,"\u9ad8\u304f":[33,76,183,208],"\u9ad8\u307e\u3063":0,"\u9ad8\u6a5f":[0,11],"\u9ad8\u7cbe":0,"\u9ad8\u901f":[0,11,34,37,40,72,109,128,132,155,156,170,171,176,181,182,184,191,193,198,199,213,214],"\u9b3c\u96f2":33,"\u9bae\u5ea6":172,"\u9df2\u7530":40,"\u9df2\u7530\u57fa":40,"\u9ed2\u3044\u70b9":176,"\uff01:":28,"\uff01\u300d":[110,128,170,171],"\uff01\u3057":2,"\uff01\uff08":17,"\uff01\uff09":[187,188],"\uff08*":5,"\uff08,":214,"\uff08-":[128,214],"\uff08.":12,"\uff08=":[93,128,130,141],"\uff08@":[35,37],"\uff08\u300c":[174,208],"\uff08\u3064\u307e\u308a":99,"\uff08\u30ad\u30fc":33,"\uff08\u4f8b":33,"\uff08\u578b":67,"\uff08\u79d2":61,"\uff08\uff1d":185,"\uff08age":132,"\uff08and":169,"\uff08byte":[48,61],"\uff08ci":21,"\uff08document":[41,184],"\uff08eol":33,"\uff08gnu":28,"\uff08groonga":33,"\uff08kana":177,"\uff08least":83,"\uff08longest":[37,171],"\uff08markdown":12,"\uff08messagepack":28,"\uff08node":21,"\uff08normalization":174,"\uff08not":169,"\uff08or":169,"\uff08perl":147,"\uff08personal":[],"\uff08piro":41,"\uff08proc":56,"\uff08romaji":177,"\uff08rroonga":33,"\uff08ruby":21,"\uff08score":128,"\uff08term":[182,183,184],"\uff08textile":12,"\uff08tf":182,"\uff08therubyracer":12,"\uff08todo":171,"\uff08tokenbigram":208,"\uff08tokenmecab":208,"\uff08true":211,"\uff08virtualbox":12,"\uff08world":195,"\uff09:":[24,25,26,27,29,30,125,126,206],"\uff09\u3001":[12,182,183,184,191,206],"\uff09\u3002":[33,208,214],"\uff09\u307e\u305f":[113,138,170,171],"\uff09\uff08":132,"\uff11\u3064":[9,88],"\uff11\u5bfe":9,"\uff12\u3064":221,"\uff13\u3064":195,"\uff1f\u300d":212,"\uff1f\uff09":33,"\uff4d\uff59\uff53\uff51\uff4c":[158,159],"\uffef\"":193,"\ufff0\"":193,"\ufffecrch":138,"\ufffetext":138,"] [":146,"] \u6708":33,"]%":181,"]'":[147,199],"])":[46,156,158,165],"],":[44,76,79,84,86,88,90,91,94,97,100,110,111,113,114,116,117,124,127,128,130,131,133,134,135,136,138,139,140,145,146,150,153,155,158,159,160,161,163,164,166,167,168,170,171,172,174,181,182,183,184,187,188,190,192,193,205,208,211,212,213,214,216,217,218,219,220,221],"].":[33,41,110,128],"]/":218,"]:":181,"][":[33,37,38,39,40,41,91,117,134,170,181],"]\"":[39,40,181,217],"]\u3002":41,"]]":[33,95,97,100,131,145,146,150],"]]]":[95,131,171,208],"]ello":33,"]x":217,"]}":[33,84,163,167,211],"^ \"":[86,163,171],"^commit":12,"_$":[131,132],"_')":[74,87],"_*":[],"_\"":37,"_a":[82,205],"_accepted":124,"_accessor":33,"_account":17,"_acquire":[],"_add":[54,56,64],"_address":[82,205,218],"_adjust":[11,63,128],"_age":153,"_all":[33,51],"_alloc":[54,70],"_allowed":[82,205],"_already":[82,205],"_and":[11,63],"_animal":211,"_append":[11,54,57,61],"_arg":82,"_argument":[61,64,65,82,205],"_arguments":33,"_asc":64,"_ascending":65,"_at":[],"_auto":[],"_available":[82,205],"_avg":128,"_avoided":[61,82,205],"_bad":82,"_base":[],"_basic":[147,199],"_batch":41,"_be":127,"_between":41,"_binary":39,"_blank":113,"_block":[82,205],"_blog":216,"_body":[87,123,208,220],"_bool":[33,35,51,61],"_broken":82,"_buffer":[51,57,82,205],"_build":14,"_builtin":[37,52,61,67],"_bulk":[33,51,54],"_busy":[82,205],"_but":11,"_by":[33,36,37,38,41,54,61,64,65,70,217],"_byte":[82,127,205],"_cache":[],"_calc":[],"_call":[11,82,124,205],"_calloc":33,"_cancel":[],"_cas":82,"_case":33,"_cast":[33,61],"_character":54,"_characters":54,"_charlen":70,"_check":[14,41,61],"_checks":113,"_child":[82,205],"_chunk":33,"_chunked":33,"_circle":[],"_clear":[],"_client":171,"_clone":12,"_close":[11,33,37,41,47,51,54,57,58,61,65,70],"_code":[70,79,173],"_column":[],"_columns":[],"_command":[],"_comment":167,"_commit":57,"_compare":61,"_compile":54,"_compress":48,"_concurrency":144,"_cond":66,"_conf":33,"_config":[33,91],"_configure":40,"_connected":[82,205],"_connection":82,"_const":[11,54],"_content":[],"_control":[33,82,205],"_controllen":33,"_copy":[],"_corrupt":[82,205],"_count":[],"_create":[],"_ctx":[],"_current":47,"_cursor":[],"_dat":[],"_data":[],"_database":[],"_dataset":[36,149,151,190],"_date":12,"_db":[],"_db\u30d5\u30e9\u30b0":37,"_deadlock":[61,82,205],"_debug":[7,14],"_decr":61,"_default":[33,39,49,53,60,199],"_defrag":61,"_del":33,"_delete":[],"_delimited":42,"_delimiter":[113,138],"_denied":[82,205],"_desc":64,"_descending":65,"_descriptor":[82,205],"_device":[82,205],"_difference":64,"_dir":[12,33,37,70],"_directory":[82,205],"_dist":39,"_distance":[],"_domain":82,"_down":[82,205],"_drilldown":128,"_dump":33,"_ecmascript":44,"_element":[33,59],"_empty":[82,205],"_enable":33,"_enabled":33,"_enc":[53,65],"_encoding":[],"_end":82,"_enough":[82,205],"_entries":[47,83],"_entry":56,"_error":[33,44,70,82,110,205],"_escalation":[],"_escape":[],"_estimate":[33,37,55],"_eval":[],"_example":187,"_exec":[33,51,54,82],"_exist":[],"_exists":[82,205],"_expand":33,"_expander":[],"_expanders":[118,119,122,180],"_expansion":[],"_expire":61,"_expr":[],"_expression":[128,181],"_extract":[33,42],"_failure":69,"_false":[51,61],"_file":[33,79,82,147,180,199,205],"_filename":82,"_files":[82,205],"_filter":[],"_filtered":109,"_filters":[],"_fin":[33,39,51,54,69,70],"_finalizer":[51,62],"_fitlers":127,"_flags":[],"_float":[33,67],"_flow":[82,205],"_flush":[],"_for":[11,33,128],"_format":[82,205],"_free":70,"_friends":213,"_full":[],"_func":[41,51,62,66,70,137],"_function":[33,70,82,124,182,205],"_fuzzy":33,"_geo":[],"_get":[],"_github":17,"_global":33,"_gqpt":146,"_gqtp":146,"_groonga":[79,110],"_group":[33,64],"_gt":65,"_hand":[],"_hash":[],"_header":88,"_hit":[80,130,147,178,205,214,218],"_hits":128,"_hook":[],"_host":146,"_html":[],"_http":[146,147],"_hugetlb":37,"_i":[82,205],"_id":[],"_idf":[],"_if":61,"_ii":[],"_illegal":82,"_implemented":[82,205],"_improper":82,"_in":[],"_inappropriate":82,"_incompatible":82,"_incr":61,"_index":[],"_indexer":38,"_indexes":[],"_info":[],"_information":88,"_init":[33,37,39,41,51,54,61,66,69,70,173],"_initialized":[82,205],"_input":[33,79,82,171],"_inspect":[],"_install":[],"_int":[33,54,61,67],"_interrupted":[82,124],"_invalid":[61,64,65,82],"_io":[33,41,117],"_ip":[205,218],"_is":[33,37,51,61,79,82,124,205],"_isspace":70,"_items":163,"_ito":37,"_itoh":37,"_ja":40,"_jis":[28,193],"_jp":28,"_json":50,"_key":[],"_keys":[64,128],"_keywords":54,"_label":33,"_labeled":128,"_large":[82,205],"_lcp":64,"_leading":128,"_leak":14,"_left":[37,55,82,157,205],"_len":[39,48,54],"_length":[33,70,205],"_level":[],"_lexicon":33,"_likes":[79,110,128,170,171,194],"_limit":[],"_line":127,"_link":[82,205],"_links":[82,205],"_list":[],"_literal":41,"_load":[],"_local":146,"_location":[79,217],"_lock":[37,46,61,66,70],"_locked":61,"_locks":[82,205],"_log":[],"_logger":[33,39],"_logical":33,"_long":[82,205],"_lt":65,"_lzo":[48,82,87],"_malloc":70,"_many":[41,82,205],"_mask":61,"_match":[],"_max":[],"_mecab":33,"_memo":164,"_memory":[],"_message":[33,79,181,216],"_messages":[12,17],"_min":[33,49,58,128],"_mode":41,"_modified":217,"_module":147,"_most":[],"_mruby":[7,8],"_msgpack":50,"_mutex":[66,70],"_n":[],"_nabe":41,"_name":[],"_names":[33,52],"_network":82,"_new":[9,37,39],"_next":[33,35,40,55,58,65],"_nfthreads":66,"_nhooks":56,"_nil":[35,51,54,64,65],"_no":[],"_nofile":[40,173],"_none":50,"_normalize":[33,39,42,64,132,174],"_normalizer":33,"_normalizers":33,"_not":[],"_nromalize":174,"_nsubrecs":[41,48,74,128,212],"_null":33,"_number":[79,202,205,218],"_numbers":33,"_o":[82,205],"_obj":[],"_object":[82,117],"_of":[],"_offline":38,"_offset":[],"_old":44,"_on":[82,205],"_one":127,"_only":[33,82,205],"_op":[11,33,54,63],"_open":[33,35,37,39,47,51,52,55,57,58,65,70,82,117,205],"_opened":[33,51],"_operation":[82,205],"_operator":[48,54,55,63,64],"_optarg":[33,52,63],"_options":[40,171],"_or":[],"_org":12,"_otoj":14,"_output":[],"_over":[82,205],"_own":33,"_pack":[],"_package":33,"_parameters":[],"_parse":[33,53,54],"_pass":147,"_pat":[],"_path":[],"_pattern":33,"_per":[37,51],"_permission":82,"_permitted":[82,205],"_persistent":[48,64],"_pipe":[82,205],"_plugin":[33,36,37,41,70],"_plugins":[],"_point":[55,156,213],"_pop":33,"_port":146,"_position":[48,87,88,110,123,127,128,158,159,164,166,167,170,171,172,181,182,183,184,192,194,208,214,216,217,220],"_posting":[55,58],"_pragma":128,"_prefix":[],"_preparer":[131,187,188,190],"_prepend":61,"_pretty":80,"_previous":47,"_printf":41,"_probability":[37,131],"_proc":[],"_process":[82,205],"_processes":[],"_proxy":147,"_ptr":[33,51,54,70],"_push":11,"_put":[],"_pvector":[33,51,54],"_ql":41,"_qlog":39,"_queries":[80,130,147,178,205,214,218],"_query":[],"_range":[],"_rate":[80,130,147,178,205,214,218],"_ratio":41,"_rc":[46,47,48,49,51,52,53,54,55,56,57,59,60,61,62,63,64,65,69,70],"_read":82,"_reader":33,"_realloc":70,"_record":61,"_records":[],"_recover":[33,41,52],"_rectangle":[],"_recursive":33,"_recv":41,"_reference":128,"_refused":[82,205],"_register":[],"_reindex":33,"_reinit":61,"_release":[],"_removable":134,"_remove":[],"_rename":[],"_reopen":[],"_repair":38,"_request":124,"_res":146,"_resource":[61,82],"_result":[64,82,128],"_results":64,"_retry":82,"_right":[37,55,157],"_rk":[],"_root":33,"_rotate":33,"_ruby":33,"_s":41,"_same":40,"_scalar":[44,48,86,87,88,90,97,98,99,101,102,103,107,110,111,115,117,123,127,128,134,135,136,140,153,155,158,159,160,161,163,164,166,167,170,171,172,181,182,183,184,192,194,208,212,213,216,217,220],"_schema":[],"_score":[33,37,39,40,48,74,86,128,131,171,182,183,184,217,221],"_scorer":33,"_script":125,"_search":[],"_section":[33,41,48,87,88,127,216,217],"_seek":[82,205],"_sel":42,"_select":[],"_selector":[],"_send":[47,50,51],"_sequence":[82,205],"_serial":86,"_set":[],"_setoperation":64,"_setpshared":40,"_shard":[],"_shutdowned":[82,205],"_side":[],"_signal":66,"_sis":[64,132,170,171,206,219],"_size":[],"_sjlj":41,"_skip":40,"_small":[82,205],"_snip":[39,41],"_socket":[82,205],"_sort":[33,64],"_sortby":[],"_source":12,"_space":[82,205],"_sparse":33,"_stable":49,"_stack":82,"_stamp":173,"_started":79,"_stop":[33,41,136,192],"_str":[54,217],"_strerror":41,"_string":[],"_success":[46,47,48,51,52,54,61,69,70,82,173],"_such":[82,205],"_suffix":[33,37],"_suggest":36,"_sum":128,"_supported":[82,205],"_symbolic":[82,205],"_synonyms":180,"_syntax":[33,44,54,82],"_system":[37,82,205],"_t":[66,82],"_table":[],"_tables":[33,40,51],"_tag":[86,158,161],"_tags":[213,217],"_target":[],"_temporarily":[82,205],"_term":[33,42],"_text":[14,33,41,54,113],"_tf":[],"_thread":[],"_threads":137,"_threshold":[],"_time":[33,79,80,130,173],"_timeout":[46,82,205],"_timestamp":123,"_tiny":33,"_title":[98,123,146,214,216],"_to":[33,53,108,216,217],"_token":[33,41],"_tokenize":[],"_tokenized":[113,138],"_tokenizer":[],"_tokenizers":33,"_too":[41,82,205],"_touch":[35,52],"_tp":144,"_transposition":33,"_true":[33,51,61],"_truncate":[37,41,48,64],"_ts":33,"_tsv":[50,180],"_type":[],"_types":[],"_uint":[33,67],"_unavailable":[82,205],"_unknown":82,"_unlink":[51,61],"_unlock":[61,66,70],"_unmap":[],"_unregister":[],"_unsupported":82,"_untag":[],"_update":[48,64,82,128,170],"_use":[33,41,51,82,108,205],"_user":[],"_users":217,"_utf":[53,65],"_valid":147,"_value":[],"_values":[],"_valule":161,"_var":[33,41,54,62,67,70],"_vars":70,"_vector":[33,40,41,48,51,54,61,76,86,87,88,97,128,163,167,168,211,213,217],"_version":[],"_versions":12,"_vesion":[160,168],"_void":33,"_vprintf":41,"_vsize":[51,54],"_w":193,"_weight":[41,48,76,87,88,127],"_when":79,"_win":[33,70],"_windows":[33,70],"_with":[7,8,33,48,64,127,132,170,171,206,219],"_word":[33,41,98,136,192],"_would":[82,205],"_xml":50,"_xxx":128,"_yyyymmdd":110,"_zlib":[48,82,87],"_zone":147,"_{":40,"`/":18,"``":[34,35,54,216],"`hostname":145,"boolean":[42,127],"byte":[33,39,48,61,64,146,166,205],"c\u30e9\u30f3\u30bf\u30a4\u30e0":33,"case":[70,122,151],"char":[41,48,51,52,53,54,61,62,64,66,67,70],"ci\u4e00\u822c":[],"ci\u4e0a":21,"class":[158,159,160,166],"const":[38,48,51,52,53,54,61,62,64,65,67,70],"continue":41,"cpu\u30b3\u30a2":[],"d\u30ad\u30fc":214,"dat\u30ad\u30fc":40,"default":[],"delete":[],"do":[41,146],"double":[33,127,171],"else":33,"enter\u30ad\u30fc":40,"enum":52,"error\u30bf\u30b0":39,"export":18,"false":[12,33,35,40,41,85,86,87,89,90,91,93,94,95,97,101,102,103,104,105,106,115,117,123,124,127,134,138,140,153,158,161,164,167,170,171,193,195,211,219],"float":[],"for":[8,31,39,42,46,50,51,52,54,55,61,66,70,140,145,147,149,150,151,155,166,171,173,190,193,194,195,197,203,217],"function":[33,42,51,70,79,150,152,205],"geopoint\u9593":37,"get\u30e1\u30bd\u30c3\u30c9":148,"gib\u304f\u3089\u3044":194,"gmo\u30e1\u30c7\u30a3\u30a2":41,"html\u30bf\u30b0":160,"id\u9806":65,"if":[11,33,46,48,50,51,52,55,61,62,64,66,69,70,76,145,147,149,150,151,171,173,197],"import":12,"in":[],"int":[],"interface":150,"long":[33,57,60,124],"lzo\u3044":87,"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":[51,66,69,79,173],"sort\u30ad\u30fc":34,"static":66,"this":[18,39,48,50,51,52,61,70,110,128,145,147,149,150,166,170,171,173,199,211,214,218,220],"true":[33,34,40,41,44,76,85,86,87,88,89,90,91,92,93,94,95,97,99,100,101,102,103,104,105,106,107,108,110,111,112,115,116,117,118,119,122,123,124,125,126,127,128,132,134,135,136,140,153,155,156,157,158,159,160,161,163,164,166,167,168,170,171,172,174,177,181,182,183,184,192,195,211,212,213,214,216,217,219,220,221],"try":[46,145,217],"var":[11,28,70,88,143,145,147],"void":[38,46,49,52,53,60,61,64,65,66,69,70],"while":52,"with":[],"x\u30df\u30ea":[171,195],"{\"":[33,76,84,107,108,111,116,125,126,131,146,158,159,164,170,171,172,181,183,184,187,188,190,192,216],"{\"_":[44,128,153,170,171,211,213,221],"{\\":100,"{column":181,"{key":128,"{label":[110,128],"{language":17,"{logical":185,"{name":171,"{path":28,"{prefix":[28,118,119,122],"{table":[128,164],"{time":173,"{type":150,"{user":194,"{yyyymm":185,"{yyyymmdd":185,"| _":221,"| c":171,"| n":171,"| y":40,"|')":87,"|..":41,"|:":173,"|<":[44,173],"|>":173,"|allow":[128,170],"|b":181,"|correct":131,"|enable":138,"|full":181,"|ga":128,"|http":146,"|info":181,"|key":[132,170,171,219],"|n":33,"|ng":128,"|none":128,"|on":128,"|oo":128,"|persistent":[88,90,133,135],"|ro":128,"|suggest":131,"|table":132,"|with":[41,76,87,88,110,113,123,127,128,158,159,164,166,167,170,171,172,181,182,183,184,192,194,208,214,216,217,220],"||":[11,39,40,171,182,216],"})":150,"},":[76,90,111,114,116,127,128,135,136,138,139,140,146,155,160,163,164,168,170,171,172,181,193,213,214,216,217,219,220],"}.":[117,128,164],"}/":[17,28,118,119,122],"}:":181,"}\\":171,"}]":[],"}_":[110,185],"}attr":40,"}e":171,"}|":173,"}}":76,"~ \"":[33,171,181],"~${":181,"~*":54,"~number":171,"~uint":33,abc:33,abcde:113,abi:33,about:[14,18,21,47,70,145,152,173],above:[124,150,190],ac:174,accept:35,accepts:[140,145,150],access:[],accesses:48,accessor:[33,61,64],accurate:166,acquire:46,acquires:46,acronym:197,actual:147,ad:[],add:[17,18,30,39,41,61,109,128,138,152,193],added:[42,55,61,64],adding:[18,61],additional:40,address:[37,39,145,150,205],adjust:128,adjuster:[],admin:[33,35,41],advanced:42,advantage:166,after:[18,55,150],again:[46,147],against:[48,52,145],age:[44,88,99,127,128,153],ages:[132,133,153],aggregate:166,ahost:181,aio:40,akio:[35,39],al:193,alert:[41,104,105,145,147,173],ali:86,alias:[44,91,92,93],aliased:44,aliases:[44,91,92,93],alice:[44,86,90,116,128,135,140,147,153,164,170,199,217],alisa:164,all:[33,39,48,51,52,55,110,128,170,171,173,190,220],alloc:[80,130,145,147,178,205,214,218],allocate:[],allocated:70,allocates:70,allow:[25,39,128,170],allowed:151,allows:166,almost:197,already:[46,70,151],also:[110,128,150,166,170,171,182,197],always:108,am:[159,166],amd:12,an:[52,55,64,70,145,147],and:[18,33,40,41,42,46,48,50,52,54,55,61,64,70,128,136,145,147,149,150,151,164,166,171,173,182,183,184,190,192,194,216,221],animation:213,ann:12,another:33,any:[33,145],api:[],appears:166,appended:61,apple:174,application:[145,147,199],applications:166,applied:42,appveyor:41,april:12,apt:[12,18,21,25,30,39],aptitude:14,ar:[138,206,208],arai:33,aramaki:[35,37],arc:138,architecture:[33,145],architectures:12,archive:[],are:[17,33,40,46,52,54,55,70,76,145,149,150,151,166,173,182,183,184,190,197],argc:66,argument:[148,171,182],arguments:[70,127,145],argv:66,armhf:41,arnaud:37,array:[84,127],art:217,arted:171,article:216,articles:216,as:[17,39,51,70,138,145,147,149,150,151,166,197,203],ascii:[170,171,193],assigned:33,associated:70,assumed:62,at:[18,42,55,145,173,217],auth:[147,199],auto:[108,131],autoconf:[6,37],autogen:[6,12,17,39],automake:[6,35],automatically:52,autotools:[],available:[42,70],avg:[41,110,128,144],aware:70,back:171,background:145,backup:[52,98],backward:140,bad:[40,41,205],base:[12,33,70,147],baseball:[213,216],based:[55,158,159,166,203],bash:28,be:[18,48,51,52,54,55,61,64,70,94,122,140,145,150,151,173,190,197],became:203,because:[33,52,147,150,178,182,190,197],become:42,been:12,before:21,begin:144,behaves:150,bernard:33,beta:42,between:[],bi:[206,208],bigram:[],bigramlexicon:123,bill:[33,206,208],billiard:[206,208],bin:[18,31],binary:[0,178,195],bind:37,binding:[42,158,159],binlib:12,bison:12,bit:[8,21,23,24,25,26,29,30,31,33,40,116,146,195],black:174,block:211,blog:[167,208,214,216],blogroonga:[],blogs:208,bm:[182,184],bob:[44,90,128,135,140,147,153,164,170,199,217],bom:35,book:171,bookmark:[76,98],bookmarks:[76,98],bool:[],boost:187,boston:217,both:61,bottom:[37,55,157],brazil:212,brew:[18,27],british:220,broken:[48,52,117,205],brooklyn:217,brother:170,browser:17,bsd:[5,28,33,41],buf:[48,61,64],buffer:[51,61,84],buffered:57,bug:[39,42],build:[8,12,18,21,25,30,31,40],builder:57,building:50,built:61,builtin:[],bulk:[33,54,61],bundled:[],but:[140,145,150,151],by:[18,39,51,52,54,55,69,70,107,150,170,173,190,197,212],bye:136,bytes:[32,62,70],cache:[],calc:[],calculate:150,called:70,caller:62,calling:[69,70],calloc:33,calros:153,camp:217,can:[17,18,46,50,51,52,70,122,127,140,145,147,166,173,182,190,197],cancel:124,canceled:124,candidate1:131,candidate2:131,candidate:[131,150],cannot:[],carlos:[90,135,140],cas:205,cases:197,cast:[],casted:61,casts:61,cat:12,cd:[12,17,24,25,26,27,28,29,30,31],cdbs:37,ce:193,ceekz:40,center:156,centos6:39,centos:[],central:217,cents:193,cflags:29,ch:138,change:[18,39,147,199],changed:[42,147],character:[70,173],characteristics:166,characters:[],charlie:217,check:[],checked:12,checking:[52,150],checks:[41,52,113],china:212,choose:145,christian:33,chroot:12,chunk:84,chunks:209,ci:[],ciritical:147,cities:155,city:[155,217],clean:14,clear:[41,61],clearlock:[],clears:48,clone:[],clumns:194,cmake:[],code:[17,140,173,178],codes:[12,69],col:61,color:174,column:[],columnn:39,columns:[35,39,52,100,127,128,149,194],com:[9,212],come:217,comma:33,command:[],commandinput:33,commands:197,comment:[33,167,216,217],comments:[],commit:17,common:[37,64,65,145,171],compare:[],compared:166,compatibility:[140,174],compatible:147,complete:[38,131,150,187,189],composition:174,compress:[87,127],computed:70,concatinated:150,concurrently:173,cond:[40,66],condition:171,conditional:131,conf:209,config:[],configuration:[40,147],configure:[],confirm:17,conifugration:21,connection:205,connections:145,constant:33,contained:[],container:54,content:[37,39,40,41,79,110,127,128,134,147,160,164,166,167,170,171,172,182,192,194,199,216],contents:70,context:[33,51,54,61,110,147,166],contrast:145,contrib:12,converted:[],copa:33,copied:70,core:146,cores:150,correct:[131,150,188],correction:188,corresponding:61,cosmo:[40,41],count:128,country:[97,212,218],cover:166,coverage:14,cpu:[0,28,146,147,150,199],crash:[],crch:138,create:[70,98,145],created:[70,110,150,217],createfilemapping:33,createrepo:12,creates:[54,70,149,173],crit:[104,105],critical:[70,145,173],ctrl:[145,205],ctx:[9,47,48,51,52,54,61,62,64,70],curl:[21,27,28,39,124,145,147,150,178,199],current:[44,66],currently:[50,52,147],cursor:[55,58,65],customize:147,customized:173,cutter:[],cxxflags:29,daemonize:150,daiki:[35,36,39],dangerous:[48,52],dash:28,dat:191,data:[],database:[],dataset:[149,150,151],datasets:149,date:146,dave:153,day:[172,173],db1:199,db2:199,dbms:166,dcb:41,dcmake:[7,8,31],dd:[171,173],ddb:[214,218],ddl:208,de:17,deb:[12,25,30,39],debhelper:37,debian:[],debootstrap:12,debug:[8,33,104,105,145,147,173],decrypt:12,defalt:35,define:[],defines:149,defrag:[],dejan:33,deleted:61,delimit:40,demo:213,depends:42,deprecated:78,derived:151,descending:33,describe:70,described:145,describes:[18,145],description:[206,217],designed:197,desktop:[8,31],dest:[64,144,145],destination:61,detail:146,details:[70,173],dev:[6,7,25,30],develop:[78,192],developed:192,developer:217,developing:192,development:217,develops:192,dewangga:33,df:184,dgrn:[7,8],dh:12,dictionary:[174,193],diff:146,different:150,digits:173,directive:147,directory:[70,150,151,205],disable:[37,147,150],disabled:173,disables:[18,147],disk:181,dist:12,distance:155,distinct:150,distributions:12,dll:[37,39,41],doc:[12,16,17,18,220],document:[12,35,145,158,159,166,171,182,184],documentation:[18,21],documentations:152,documents:[164,166],doesn:[61,117,147],domain:[],don:[50,54,145,147,190],done:46,download:[12,24],downloads:31,dragonfly:35,draw:213,drilldown:[],droonga:[161,185],due:166,dump:[],ea:[138,173],each:[54,131,147,150,173,187,188,190],ear:138,earch:138,earlier:140,easier:182,easy:[145,182],ec:128,echo:117,ecmascript:[39,40,128,169,171],edge:9,edict:41,edit:[],editor:17,editrc:37,effective:145,eggs:216,eight:214,eito:40,el:[24,193],elapsed:[79,150,173,178],element:[33,76,171],elements:[33,76],elfring:39,ellip:155,emacs:17,embedding:145,emerg:[104,105],emergency:[145,147,173],emphasize:160,empty:33,en:[131,138,187,193],enable:[],enabled:173,enables:147,encoded:150,encoding:[53,70,145,178],ency:146,end:[144,158,178,205],endpoint:[150,151],eng:[131,187],engi:[131,187],engin:[131,187],engine:[131,138,158,159,166,182,187,188,189,190],enginen:187,english:[14,18,128],enhanced:42,enourmous:190,enqueue:9,entries:[33,86,101,102,103,110,128,134,143,158,159,170,171,194],entry:[56,85,86,87,89,95,96,97,100,110,123],entrykeys:134,env:180,environment:21,eof:145,epel:[24,39],er:181,eric:153,errno:[33,41],error:[40,41,44,51,55,70,79,104,105,145,147,173,181,184,214],errror:181,es:193,escape:54,escaped:54,estimate:33,estimated:55,estimates:55,etc:[12,147,194,199],etime:144,euc:[28,40,145,193],evaluated:125,even:[],event:[131,149,151,187,188,190],events:199,ex:138,exact:11,example:[128,145,150,187,211,212,213,214,218,221],examples:[35,109],excel:180,except:194,exceptions:[],exclamation:33,exclude:[39,40,41,107,109,110,112,153],exe:[12,31],exec:205,executable:[],execute:[145,150,151,190],executed:218,executes:[145,150],executing:[51,150],exist:[61,117,182],existence:52,existing:[18,145,151],exists:[110,134],exit:[],expansion:[],expect:41,explain:33,explicitly:18,expr:[54,61,62,68],express:[8,31,39,40],expression:[33,54,126,128,150],expressions:147,ext:138,extract:[173,190],extracted:54,extracts:54,fa:138,factor:[41,128],failed:[46,91,117,214],failures:12,fast:[79,100,110,128,138,158,159,160,161,166,170,171,182,216],faster:197,favorite:17,favorited:217,favorites:217,fbnteqr:33,fd:150,feature:[17,52,145,182],fedora:[],fetched:190,fgets:33,file:[],filename:205,files:[],fills:150,filter:[],fin:62,finalizes:70,find:18,finds:64,finished:[124,173],firefox:17,firewood:[39,40],first:[70,110,128,170,171,217],five:214,fix:[42,88,90],fixed:39,flag:[],flags:[],floating:195,flower:211,fluent:13,flushviewoffile:33,followee:217,follower:217,following:[18,48,70,145,149,150,151,173,197],fontaine:37,force:[],foreground:145,fork:17,forks:145,form:[150,170,174,202,205,214],format:[17,42,50,70,100,148,150,173,178],formats:173,formula:12,found:[55,64],four:[173,214],frank:153,free:[35,41,51,84,173],freebsd:[],freed:52,frees:70,freq:190,frequency:[41,131,182,183,184,187,188,190],friends:213,from:[],fromtable:86,fsf:39,ftb:42,ftp:[12,146],fu:138,ful:138,full:[33,127,138,166,181,182,193],fulltext:[138,145,158,159,166],fullwidth:33,fumiyasu:37,func:[51,62,66,70],functionality:150,functions:[33,41,42,70,168],fuzzy:33,ga:[138,146,174],garbage:[40,84],gb:[130,178,209],gbyte:32,gcc:[24,26,28,29,37,39,40],gdb:14,gem:12,gemfile:39,generate:[18,70],generated:[18,70,149],generates:149,generation:18,geo:[],geodetic:195,geoindex:[],geopoint:[],geoppoint:55,geosite:213,get:[],getaddrinfo:39,getenv:33,gets:70,gettext:[17,18],getting:[],ghz:146,gi:138,gib:[32,194],git:[6,7,8,12,13,17],github:[6,7,8,12,13,17,19,21,33,37,39,40,41,87],gitter:[2,33],glaser:33,glib:40,glossary:21,gnu:[],gnupg:12,go:[172,197],golubchik:33,gone:213,goo:[170,171],good:[110,128,136,170,171,172,192],google:[128,182,183,184,189],goroo:197,gpg:12,gpl:42,gps:0,gqtp:[],gr:[128,138],grease:211,gregex:40,grep:[24,25,26,30],grn:[],grndb:[],grnline:214,grnslap:[],grnwrap:214,gro:166,gronga:[180,189],gronnga:189,gronoga:147,groo:128,groogna:[38,199],groongau:193,group:[64,212],grroonga:189,gt:[158,159],gtar:29,gted:17,gtihub:37,gui:127,gzip:[],halfwidth:174,hana:213,hanako:97,hand:[],handle:51,handled:147,hard:194,hardy:35,has:[12,42,55,64,70,145,149,173,182],hash:[127,191,217],hat:[],have:[50,52,172],haystack:11,hdd:146,he:193,head:[41,144,205],header:[],heavy:197,hello:[110,128,136,171,172,192,193],help:[14,17,37],helpful:182,hendro:40,here:[70,145,149,150,151,173,190],hex:213,hh:[171,173],hideki:33,high:86,highlight:[],hino:40,hiroaki:33,hiroshi:[35,37],hirotaka:33,hiroyuki:33,hmm:217,ho:193,hobby:173,hoge:154,home:[12,28,193],homebrew:[],homepage:146,hook:56,horikoshi:37,host:[145,146,181,205,218],hostname:[145,147,148],hottolink:42,hour:[46,173],how:[],html:[],http:[],httpd:[12,38,39,40,41],httprewritemodule:147,https:[],hw:27,ia:[206,208],ic:[58,193],ichii:37,id:[],ideographic:33,idf:41,ids:[55,76,86],ieee:195,ifexists:100,ignore:33,ignored:[39,52],ignores:[],ii:181,il:[206,208],ill:206,illegal:205,implementation:197,implemented:[33,42],improper:205,inappropriate:205,include:[16,41,107,109,110,112,153],includes:33,incompatible:205,index:[],indexblog:216,indexbuf:48,indexes:127,indicates:173,info:[33,104,105,145,147,181,184],information:173,init:[28,39,41,62],initialization:150,initialize:51,initialized:[51,70],initializes:[69,70],innodb:0,input:[50,79,100,205],inspect:33,inspected:[],inspection:[],inspects:[],install:[],installer:12,instantly:166,instead:[70,85,122,145,203],integer:145,intel:146,internal:41,internally:[50,51],interpreter:12,interrupted:205,into:[51,150,190],introduced:147,introduction:[],inv:146,invalid:[70,99,128,150,205],inverted:166,io:[],ip:[146,150,205,218],ipa:26,iptables:199,is:[17,18,33,39,41,46,48,50,51,52,54,55,61,62,64,70,76,110,117,124,128,134,136,138,145,147,149,150,151,158,159,160,161,164,166,170,171,173,178,181,182,190,192,197,199,203,205,211,214,216,218,220],isn:[51,52,145],iso:171,issue:19,issues:41,it:[18,48,50,51,52,54,55,61,64,69,70,79,100,110,128,140,145,150,151,170,171,172,173,182,197,203,213],itagaki:35,item:[131,149,187,188,190],items:[128,163],its:[54,70,145,173],itself:76,ivh:[24,26],iwai:[38,39],iwamatsu:[],ja:[12,17],jacob:33,james:219,january:150,japan:[97,212,218],japanese:193,jason:219,javascript:[],je:219,jeff:219,jekyll:12,jemalloc:41,jennifer:219,jersey:217,jessie:[],jiro:213,jis:[65,177],job:146,jobs:146,john:[97,219],joseph:219,jq:214,jquery:[35,41],json:[],jsonp:[33,37,150],juman:26,just:[52,61,145,149,150,172,173,217],ka:174,kakesa:33,kana:[131,149,187,188,190],karmic:14,kashihara:41,katagiri:40,katakana:174,kawada:41,kawaji:39,kb:209,kbytes:146,keeps:76,ken:213,kenichi:[35,37],key:[],keybuf:64,keyid:12,keys:[],keyword:[39,40,54,128,158,159,166,170,182,183,184],keywords:54,kib:[33,194],kinjirou:213,kiske:39,kitaiti:[],kk:181,klose:33,km:217,ko:42,koi:[28,39,145],korea:212,kuriyama:41,kwic:166,kytea:[28,39,40,138],label:[],langasek:33,language:17,larger:[151,190],largetext:191,last:[39,217],lat:146,latency:146,later:145,latin1:39,latin:[28,39,145],latinovic:33,launchpad:[12,30,41],layout:12,lc:17,ld:193,learing:190,learn:[150,151],learned:151,learning:[],left:55,length:70,lenny:37,let:172,letter:174,level:[70,104,105,145,147,151,173,205],levels:147,lexicon:[33,98,123,132,133,146,164,167,172,174,216],lf:144,lgpl:42,li:[193,206,208],lib:[35,40,110,118,119,122],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:[182,197],library:[50,145,197],libstemmer:41,libtool:[6,33],libwinpthread:41,libzmq:[25,30],license:[12,42],light:197,like:[48,145,197],limit:[],line:[21,51,79,197],lines:[14,150],link:[211,212,218],links:[211,212,218],linux:[],lion:39,list:[12,18,149,151],listen:[39,145,147,199],lists:41,ll:[138,193,206,208],lldb:[6,7],llt:138,lo:193,load:[],loaded:126,loads:151,local:145,locale:17,localhost:[12,37,124,144,145,146,147,150,178,199],localstatedir:[28,35],location:[],lock:[],locked:70,locks:[70,166],log:[],logaling:21,logged:173,logical:[],logrotate:[39,41],logs:[86,107,109,111,112,115,117,123,132,133,150,151,173,181,183,184,185],logyyyymmddhhmmss:150,longer:42,longest:64,longitudexlatitude:40,longtext:[],loose:163,looseitems:163,lru:83,ls:12,lt:[138,158,159,166],lte:138,lts:[21,30],lucid:[12,35,40],lz4:[28,33,41,127],lz:[28,127],lzo:[37,39,41,48,87,205],m6:29,mac:[],machine:145,macports:[],mail:146,main:[12,25,66],make:[],makecache:[24,39],makefile:[7,8,12],makoto:[],malloc:41,man:[34,153],manage:18,managed:52,management:[21,52,145,166],manager:[147,199],managing:52,many:[76,149,182,197],map:[37,173],mariadb:[40,41],mark:[33,174],marked:203,markup:16,markus:39,marverick:35,masafumi:[],masaharu:[38,39],masahiro:35,masatoshi:33,massachusetts:217,master:147,match:[],matched:[55,150],matsuu:35,matthias:33,maverick:37,max:[],maximum:[],may:[48,52],mb:39,mbytes:146,me:[121,193],meaning:145,means:[50,55,61,70,147,173],mecab:[0,12,24,25,26,27,28,30,33,34,35,37,39,40,41,42,193],meerkat:37,memcache:202,memcached:[],memo:[41,164,182],memory:[],memos:[33,127,161,168,182,192],memset:33,mercurial:12,message:[70,105,107,173,181,183,184,216],messagepack:[],messages:40,metadata:39,micro:217,microsecond:173,microsoft:[8,31,33],migrated:[110,128,170,171],mike:97,millisecond:46,milliseconds:150,mime:[33,199],min:[],minagawa:40,mingw:[12,37],minimum:70,minute:173,mips:33,missing:[],mitsuhiro:35,mizuhara:33,mkdir:98,mkostemp:41,mktime:33,ml:10,mlock:35,mm:[171,173],mmap:[],model:145,modern:217,modes:145,moero:213,money:213,monkey:211,month:[173,213],montywi:38,mooz:37,more:[70,145,151,166,182,205],moritapo:213,moritars:216,morning:172,most:55,mpaa:153,mruby:[6,7,8,33,40,41,125,126,185],msec:46,msg:[9,33],msgpack:[33,178,205],msvc:33,msyql:76,mte:42,multiple:[150,197],multithread:64,munin:[24,25,26,28,30,34,37,39],murakami:[],museum:217,music:[173,213],must:[48,52,54,55,61,70,94,150,151,190],mutex:[40,66,70],mv:106,my:[110,128,170,171],myisam:0,mysql:[0,12,24,25,26,30,33,41,42,76,113,128,158,159,166,180,182],naist:193,nakamura:33,name:[],namebuf:[48,61],names:86,nanoseconds:173,naoina:[39,40],naoya:[],nargs:54,narwhal:37,natanael:33,natty:37,ne:138,need:[18,50,54,140,145,150],needed:[51,147],negative:[62,70],neologism:193,nested:40,net:212,netbsd:[35,40],netinet:33,network:205,never:108,newark:217,newids:86,newly:[140,166],newnames:86,news:[],newvalue:48,next:[55,62],nfkc:174,nfs:28,nfthreads:66,ng:138,nginx:[],nginxhttpstubstatusmodule:41,ni:[163,177],nice:172,night:[172,220],niho:163,nihon:[163,187],niku:41,nine:214,nippon:187,nise:41,no:[33,34,40,42,55,98,99,109,110,117,128,131,181,191,205],noarch:[24,26],nobuhiro:[],node:12,nogpgcheck:39,none:[28,113,128,136,138,145,147,149,205,216],nonexistent:[91,92,110,128],normalize:[],normalized:113,normalizer:[],normalizerauto:[],normalizernfkc:[],normalizers:[],normallexicon:174,normally:[50,51,52,145],note:[70,145,150],nothing:[50,168],notice:[33,104,105,145,147,183,184],notification:173,now:[],nroonga:[21,164,216],nsis:12,nsubrecs:[48,110,128,212,213,217],nt:193,nterms:84,nul:[37,52,70,193],number:[55,62,70,84,94,145,146,150,171,190,194],numbers:33,nvars:62,ny:217,obata:35,obj:[48,52,54,56,59,61,62,63,68,84],object:[],objname:[85,96],obsolete:203,obtained:70,occurred:55,ocelot:[37,40],october:41,of:[18,39,42,48,51,55,61,62,64,70,84,94,131,145,147,149,150,151,158,159,166,167,173,190,194,217],off:[41,147],official:12,offset:[],ok:97,okapi:[182,184],old:[12,70],oldvalue:48,om:193,omitted:178,on:[17,42,50,52,55,61,64,70,138,145,147,150,158,159,166,199],one:[70,145,151,166,197],oneiric:[37,40],onga:166,ongaeshi:[33,35,39,40],onigmo:[33,41,181],oniguruma:33,only:[33,50,61,70,145,147],oo:[138,191],ooo:191,op:[48,54,55,63,64],opaque:205,open:[],openbsd:33,opened:[52,173],opens:[52,55],operation:[55,205],operations:[],operator:[33,55],optarg:[52,63],optimization:[],option:[18,145,150,151,173],optional:[],options:[],or:[41,48,50,52,55,64,70,124,128,140,145,150,161,164,170,173,180,184,193,205,220,221],oracle:[],orangain:40,org:[212,218],origin:17,original:[50,98,219],os:[],osdn:[12,33],other:[33,46,48,52,70,145,151],otherwise:[61,70],out:146,output:[],outputs:[151,173],outputting:50,overcommit:194,owned:54,owner:147,packages:[12,17,24,25,26,27,28,29,30,31,203],pai:33,pair:[131,149,187,188,190],pairs:[],palallel:12,pangolin:[30,39],parameter:[55,61,62,64,140,145,150],parameters:150,parent:[110,128],parker:33,partial:11,partitioning:107,pass:147,passed:[12,52],passes:12,pat:[65,191],patch:42,path:[],patprefix:219,patricia:127,patsuffix:219,pattern:[170,171],pcre:39,pentium:146,performance:[150,166,197],period:[],permission:205,persistent:[52,64,88],pg:153,pgroonga:[33,182,185],php:[39,197],physical:84,pid:[28,33,34,145],pikonyan:213,pip:18,pkg:[28,29,33,35],pkgs:24,platforms:70,play:220,player:86,players:[86,135],please:[17,52,203],plugin:[],plugins:[],po:[],poedit:17,point:[],pointed:70,pointer:70,popular:[128,145],port:[27,145,146,150,202,205,218],porting:42,position:[55,70,127,136,138,193],posix:[33,171],post:[],posted:217,postgresql:[0,166,185],posting:55,poyonga:197,ppa:[],pre:42,precise:[12,30,39],prefer:150,prefix:[],previous:203,price:211,priority:128,proc:[24,25,26,30,33,56,62,64,68,70,94,117,128],process:[],processed:173,processes:145,processing:173,processor:[24,25,26,30],program:[145,150,151],progress:173,project:171,proonga:197,properties:173,protocol:[],provide:150,provides:[],pthread:[37,40],ptr:70,pub:12,published:12,pull:[],push:[12,17],pushes:51,put:170,python:[12,18,197],qps:[144,146],quantal:39,queries:[146,166],query:[],queryexpandertsv:[],question:33,quetzal:39,queue:9,quiet:205,quit:[],quiz:213,quote:171,raccoon:213,radious:156,rake:12,rakutan:216,raltime:190,ram:146,rand:[],range:[],ranguba:[41,47,76],raring:[40,41],rather:197,rc:[51,69,82,138,173],rch:138,rd:[206,208],rdbms:[0,33,145],rdiscount:12,re:52,read:[166,205],readings:[163,177],readme:[12,40],reads:151,ready:18,real:[44,166],realloc:35,really:[110,128,170,171],realtime:[131,190],received:145,receiver:[150,151],recently:83,recommend:197,record:[33,55,61,64,76,128,155,211,214,218],records:[33,55,128,173,190],recovered:52,recovers:52,rect:155,rectangle:[],recursive:[],red:[],redcloth:12,redhat:[28,37],reference:[33,40,61,76,127,128,134],referenced:99,referencedbycolumn:134,referencedbytable:134,references:134,referencetable:134,regexplexicon:[123,181],register:[],registered:[70,122,166],regular:[147,150,181],reindex:[],related:[],relation:61,relational:145,release:[],released:[12,42],releases:69,remained:[173,181],remote:145,remove:[61,113,117,134],removed:122,removep:61,removes:[],removing:52,rep:146,replaced:[149,151],replication:182,replied:217,replies:216,reply:216,repoforge:[24,39],reported:[],reports:70,repositories:12,request:[],requests:[150,173],required:[21,117,147,150,199],reqular:150,res2:64,res:[55,63,64,146],resizes:70,resource:205,resources:[51,52,69],response:150,rest:70,restart:203,result:[11,64,151,155,166,178,205,216],results:[39,64,150,166],retry:205,returned:[55,70],returns:[48,55,64,70,150],reverse:[12,147],rewrited:42,rf:[24,147],rid:[57,58],right:55,ringtail:[40,41],rk:[],rl:193,rlimit:[40,173],rm:147,ro:138,roonga:[170,171],root:[33,40,147,218],rose:211,row:166,rpm:[12,24,26,35,37,39,40,41],rpmforge:24,rroonga:[21,33,40,41,47,161,164,167,168,169,182,216],ruby:[],rubygems:39,rubyinstaller:8,run:[],running:[52,124,145],runs:[145,151],ryunosuke:[],sa:[131,188],sae:[131,188],saer:[131,188],saerc:[131,188],saerch:[131,188],sako:33,salamander:[40,41],same:[40,46,76,197],sample:[146,150,151],satisfies:[],sato:[],satoh:37,saucy:[40,41],save:[12,150],saves:150,say:171,scalar:127,scan:14,schema:[],scope:[],score1:11,score2:11,score:[11,33,40,48,76,90,128,131,135,140,150,155,164,171,182,183,184,187,188,190,208,213,214,216,217,221],scorer:[],script:[],se:[138,187],sea:[138,187],sear:187,searc:187,search:[37,39,64,65,128,131,138,145,158,159,166,170,171,180,182,187,188,189,190],searched:55,sebastian:41,sec:46,second:173,section:[48,57,70,127,145],sed:[33,37,39],see:[18,70,145],segment:84,segments:84,segv:[34,40],select:[],selector:95,selects:55,self:146,sen:42,senboku:40,send:197,sender:[150,151],senna:[],sentense:33,separated:50,sequence:[131,149,173,187,188,190],serach:188,serch:[131,188],sergei:33,sergey:41,serial:86,serihiro:39,serve:12,server:[],service:[33,188,203],session:[150,197],set:[61,146],sets:51,seven:214,sh:[12,21],sha:12,sharding:[33,107,108,109,110,111,185],share:28,shared:[46,48,52],shell:145,shibuya:35,shidara:37,shift:[28,193],shimada:35,shimamura:33,shimoda:35,shimomura:39,shinya:39,sho:40,shopping:172,shops:206,shorttext:[],should:[18,51,70,140],show:34,shows:50,shutdown:[],sid:[12,37,41,84],side:[],sigcont:40,sigint:37,sign:12,signing:12,sigsegv:64,sigstop:40,sigusr:37,silent:21,simple:203,since:[122,140,173,203],sis:37,site:[123,211,212,214,218,221],sitecountry:[212,218],sitedomain:[212,218],sites:[98,101,102,103],six:[173,214],size:[],sizeof:[33,51,54],sjis:[28,42,145],slash:171,sleepy:172,small:117,smaller:[76,173],snake:33,snippet3:166,snippet:[],so:[52,61,64,145],soccer:213,socket:205,soft:194,software:30,solaris:[],solr:171,some:[33,69,149,173],sort:[33,64],sortby:[],sorting:[],sound:[174,188],soundkitchen:[37,39],source:[],sourceforge:[12,33],sources:[12,18,88,127],space:[33,70,76,170,181],span:[158,159,160,166],spec:[12,35,39,40],specified:[55,62,70],specifies:[145,150],specify:[17,61,145,147,149,150,151],specifying:70,speed:189,spelling:220,sphinx:[15,16,17,18,33,41],sphr:155,spil:33,sports:213,sql:[107,182,212],squeeze:[12,40],src:64,ss:[171,173,181],ssh:12,ssssss:173,st:[138,171,193],stable:78,stack:[40,205],stamp:173,standard:195,standing:197,start:[33,80,107,130,150,172,203],started:[79,110,128,170,171,173],starting:70,starttime:[33,80,130,147,178,205,214,218],stateful:197,states:97,status:[],steve:33,still:124,stop:[33,39,145,147,203],storage:[158,159],store:[51,54,55,61],stored:[151,190],stores:54,str:[54,70],strerror:41,strict:41,string1:154,string2:154,string:[],stringify:[],strlen:70,studio:[8,31,33,39,40],su:33,sub:[],subject:40,submit:[131,150,187,188,190],subrecord:40,substitution:164,succeeded:[],success:205,successfully:70,successor:171,such:[17,39,122,149,150,151,166,190],sudo:[12,14,18,21,24,25,26,27,28,29,30,39,194,203,209,218],sufficient:70,suffixsearchterms:[170,171],suggest:[],suggestion:[149,150],suitable:145,suited:166,sum:[41,110,128],summary:[],sunos:41,superior:166,support:42,supported:[42,147],supports:[42,70,151],swig:42,synonym:[128,220],synonyms:180,syntax:[44,145,205],syscall:[41,214],sysctl:[33,194,209],system:[29,110,128,145,166,170,171,194,195],systemctl:203,systemd:[33,39],systems:166,tab:50,table:[],tablecursor:33,tablegroupflags:33,tablename:78,tables:[],tag:[12,86,110,128,161,168,213],tags:[33,76,88,128,132,133,161,168,213],tahr:[30,41],tail:[12,205],tajima:39,takahiro:35,takashi:[37,97],takayama:33,takayuki:37,takes:124,takuto:35,tar:[12,24,25,26,27,28,29,30],target:[],taro:213,tasuku:42,tatsuya:39,tc:[58,65],tcp:145,te:[138,193],temporary:[52,145],term:[84,87,220],terminal:[145,217],terms:[84,110,127,128,134,136,145,158,159,164,166,170,171,182,183,184,192,194,208,214],teruya:33,test:[12,14,146,211,214,216,217,218],testdb:[146,151],tests:12,tex:138,text:[],tf:[182,183,184],than:[33,76,173,181,190,197],thanks:217,that:[39,46,48,50,54,55,61,62,64,70,134,145,150,166,173,197],the:[16,18,39,42,46,48,50,51,52,54,55,61,62,64,70,94,110,117,124,128,134,145,147,149,150,151,155,166,170,171,173,190,194,197,203,217],theater:220,theatre:220,them:54,then:[70,150],there:[76,145,170,197,203],therubyracer:12,thesaurus:128,these:[52,145,166],they:173,thorsten:33,thread:[],threads:[94,150,173],threasd:145,three:[211,214],threshold:[33,37,60,61,96],through:147,thus:[149,151],tid:58,time:[],timeout:[46,61],times:46,timestamp:[107,111,115,117,123],timeuot:46,tips:[],title:[12,40,41,98,101,102,103,123,134,167,182,211,212,213,214,216,218],titles:[170,171],tiwawan:33,tld:212,tls:33,tmp:[6,7,12,40,88,90,117,131,133,135,145,150,180,181,199,205,214,218],to:[],tobby:164,todo:[],token:[],tokenbigram:[],tokenbigramignoreblank:[],tokenbigramignoreblanksplitalpha:193,tokenbigramignoreblanksplitalphadigit:193,tokenbigramignoreblanksplitsymbol:[],tokenbigramignoreblanksplitsymbolalpha:[],tokenbigramignoreblanksplitsymbolalphadigit:[],tokenbigramsplitsymbol:[],tokenbigramsplitsymbolalpha:[],tokenbigramsplitsymbolalphadigit:[],tokenbigramsplitxxx:193,tokenbigrm:86,tokenbigrma:138,tokendelimit:[],tokendelimitnull:[],tokenfilterstem:[],tokenfilterstopword:[],tokenization:[],tokenize:[],tokenizer:[],tokenkytea:39,tokenmecab:[],tokenregexp:[],tokens:138,tokentrigram:[],tokenunigram:[],tokyogeopoint:[],tom:164,tomita:35,tomo:213,tomoatsu:35,tomotaka:37,tomygx:33,too:[33,117,205,216],tood:70,tool:21,top:[37,55,157],tortoisegit:8,totable:86,total:[84,116,146],touch:52,toybox:211,tracker:19,transfer:[0,197,203,205],transitional:203,translate:[17,18],translation:17,transposition:[],travel:217,travi:40,travis:[],trie:127,tried:217,tries:46,tritonn:[110,128,170,171],truncate:[],truncated:40,truncation:37,trust:12,trusty:[12,30,41],ts:193,tsu:33,tsv:[],turn:147,tutorial:70,tweet:172,tweets:172,twiter:39,two:[151,173],tx:193,txt:[16,17],type:[],types:[],typo:[37,41],ubuntu:[],ueno:[35,36,39],ui:128,uid:12,uint:[],ul:138,ull:138,ultra:213,umask:41,umemoto:37,unchanged:70,under:[147,150,151],unicode:[33,174],unicorn:33,uninstall:39,unique:[124,150],united:97,universe:30,unix:[],unknown:205,unlink:54,unlock:61,unlocked:70,unlocks:70,unmanaged:84,unmaps:52,unpatched:42,unsafe:52,unsigned:[41,47,48,54,57,61,62,64,65,67,70],unsorted:[],unsplit:11,unsupported:205,until:[46,70],up:178,update:[],updated:[17,42,208],updates:[18,166],updating:46,upload:12,uptime:[34,80,130,147,178,205,214,218],uri:[147,148],url:[12,37,41,98,148,218],usa:212,usage:145,use:[],used:[50,51,52,61,69,83,86,140,145,150,151,173,197,217],useful:[48,145,182,216],useless:52,user:[62,146,147,150,153,159,164,166,167,171,194,213],username:[31,213],users:[],uses:[50,52,151,173],using:[42,50,190,216],usr:[14,27,28,118,119,122,145,147],usually:151,utc:171,utf:[28,35,39,40,42,53,145,150,171,178,193],utopic:33,uubntu:14,uuuuuu:171,uzulla:37,v1:11,v2:11,vagrant:12,valgrind:14,valid:190,value:[],valuebuf:59,valuen:161,values:[48,50,61,100,145],variable:70,variables:70,variety:213,vars:[62,70],varying:70,vector:[],version:[12,37,42,49,51,80,130,146,147,178,185,205,214,218],versions:203,vervet:[30,33],very:[79,100,110,128,158,159,166,170,171,182],via:190,video:213,view:150,virtualbox:12,visual:[8,31,33,37,39,40,41],vivid:[12,30,33],vm:[],vmstat:209,vmware:12,voiced:174,vojtovich:41,waits:[46,70],wanabe:40,want:[145,150,197],wareohji:39,warning:[104,105,145,147,173,181,184],warp:41,watch:12,way:151,wc:[24,25,26,30],we:197,weakness:166,web:[12,28,34,128,131,170,188,190],webclips:160,weight:[39,48,76,127,128,182,211],welcome:[110,128,170,171,217],well:166,werewolf:[30,33],wget:[24,25,26,28,29,30],wgs:[],wheezy:[],when:[18,48,52,61,145,150,197],whether:[52,61],which:[70,145,150,151],whombx:40,wibowo:40,wiedenroth:41,wiki:147,wikipedia:[177,195],will:[61,70,145,197],wily:[30,33],win:[8,31],windows:[],wing:[39,40],without:[147,166,190],wo:193,word:[39,128,170,171],words:171,work:173,worker:[],works:[70,173],world:193,write:[14,18,38,109,121,128,145],written:[18,140],wrong:[],x6:12,xcode:27,xml:[],xt:[138,193],xvzf:[24,25,26,27,28,29,30],xxx:[33,40,145,171],xxxxx:12,yamaguchi:37,yappo:[40,41,42],year:173,years:44,yes:[14,33,80,98,99,109,117,128,131,144],yito:[39,40],yoji:37,yokoyama:[],yoku:[40,41],york:[155,217],yoshioka:39,you:[17,18,48,50,51,52,54,70,140,145,147,149,150,151,190,197],your:[17,18,21,37,145],yuki:37,yum:[12,18,24,26,39],yunqiang:33,yutaro:33,yuya:33,yy:44,yyyy:[171,173],yyyymm:185,yyyymmdd:[107,109,110,112,185],zenigata:213,zeromq:28,zip:[],zlib:[25,28,30,35,37,39,40,41,48,87,127,205],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.17. \u30a8\u30a4\u30ea\u30a2\u30b9","7.23. API","7.23.2. \u5168\u4f53\u8a2d\u5b9a","7.23.4. <code class=\"docutils literal\"><span class=\"pre\">grn_cache</span></code>","7.23.5. <code class=\"docutils literal\"><span class=\"pre\">grn_column</span></code>","7.23.6. <code class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></code>","7.23.7. <code class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></code>","7.23.8. <code class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></code>","7.23.9. <code class=\"docutils literal\"><span class=\"pre\">grn_db</span></code>","7.23.10. <code class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></code>","7.23.11. grn_expr","7.23.12. <code class=\"docutils literal\"><span class=\"pre\">grn_geo</span></code>","7.23.13. <code class=\"docutils literal\"><span class=\"pre\">grn_hook</span></code>","7.23.14. <code class=\"docutils literal\"><span class=\"pre\">grn_ii</span></code>","7.23.15. <code class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></code>","7.23.16. <code class=\"docutils literal\"><span class=\"pre\">grn_info</span></code>","7.23.17. <code class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></code>","7.23.18. <code class=\"docutils literal\"><span class=\"pre\">grn_obj</span></code>","7.23.19. <code class=\"docutils literal\"><span class=\"pre\">grn_proc</span></code>","7.23.20. <code class=\"docutils literal\"><span class=\"pre\">grn_search</span></code>","7.23.21. <code class=\"docutils literal\"><span class=\"pre\">grn_table</span></code>","7.23.22. <code class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></code>","7.23.23. <code class=\"docutils literal\"><span class=\"pre\">grn_thread_*</span></code>","7.23.24. <code class=\"docutils literal\"><span class=\"pre\">grn_type</span></code>","7.23.25. <code class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></code>","7.23.1. \u6982\u8981","7.23.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. \u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8","7.3.4. \u30ea\u30af\u30a8\u30b9\u30c8ID","7.3.5. \u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9","7.3.6. <code class=\"docutils literal\"><span class=\"pre\">cache_limit</span></code>","7.3.7. <code class=\"docutils literal\"><span class=\"pre\">check</span></code>","7.3.8. <code class=\"docutils literal\"><span class=\"pre\">clearlock</span></code>","7.3.9. <code class=\"docutils literal\"><span class=\"pre\">column_copy</span></code>","7.3.10. <code class=\"docutils literal\"><span class=\"pre\">column_create</span></code>","7.3.11. <code class=\"docutils literal\"><span class=\"pre\">column_list</span></code>","7.3.12. <code class=\"docutils literal\"><span class=\"pre\">column_remove</span></code>","7.3.13. <code class=\"docutils literal\"><span class=\"pre\">column_rename</span></code>","7.3.14. <code class=\"docutils literal\"><span class=\"pre\">config_delete</span></code>","7.3.15. <code class=\"docutils literal\"><span class=\"pre\">config_get</span></code>","7.3.16. <code class=\"docutils literal\"><span class=\"pre\">config_set</span></code>","7.3.17. <code class=\"docutils literal\"><span class=\"pre\">database_unmap</span></code>","7.3.18. <code class=\"docutils literal\"><span class=\"pre\">define_selector</span></code>","7.3.19. <code class=\"docutils literal\"><span class=\"pre\">defrag</span></code>","7.3.20. <code class=\"docutils literal\"><span class=\"pre\">delete</span></code>","7.3.21. <code class=\"docutils literal\"><span class=\"pre\">dump</span></code>","7.3.22. <code class=\"docutils literal\"><span class=\"pre\">io_flush</span></code>","7.3.23. <code class=\"docutils literal\"><span class=\"pre\">load</span></code>","7.3.24. <code class=\"docutils literal\"><span class=\"pre\">lock_acquire</span></code>","7.3.25. <code class=\"docutils literal\"><span class=\"pre\">lock_clear</span></code>","7.3.26. <code class=\"docutils literal\"><span class=\"pre\">lock_release</span></code>","7.3.27. <code class=\"docutils literal\"><span class=\"pre\">log_level</span></code>","7.3.28. <code class=\"docutils literal\"><span class=\"pre\">log_put</span></code>","7.3.29. <code class=\"docutils literal\"><span class=\"pre\">log_reopen</span></code>","7.3.30. <code class=\"docutils literal\"><span class=\"pre\">logical_count</span></code>","7.3.31. <code class=\"docutils literal\"><span class=\"pre\">logical_parameters</span></code>","7.3.32. <code class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></code>","7.3.33. <code class=\"docutils literal\"><span class=\"pre\">logical_select</span></code>","7.3.34. <code class=\"docutils literal\"><span class=\"pre\">logical_shard_list</span></code>","7.3.35. <code class=\"docutils literal\"><span class=\"pre\">logical_table_remove</span></code>","7.3.36. <code class=\"docutils literal\"><span class=\"pre\">normalize</span></code>","7.3.37. <code class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></code>","7.3.38. <code class=\"docutils literal\"><span class=\"pre\">object_exist</span></code>","7.3.39. <code class=\"docutils literal\"><span class=\"pre\">object_inspect</span></code>","7.3.40. <code class=\"docutils literal\"><span class=\"pre\">object_remove</span></code>","7.3.41. <code class=\"docutils literal\"><span class=\"pre\">plugin_register</span></code>","7.3.42. <code class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></code>","7.3.43. <code class=\"docutils literal\"><span class=\"pre\">quit</span></code>","7.3.44. <code class=\"docutils literal\"><span class=\"pre\">range_filter</span></code>","7.3.45. <code class=\"docutils literal\"><span class=\"pre\">register</span></code>","7.3.46. <code class=\"docutils literal\"><span class=\"pre\">reindex</span></code>","7.3.47. <code class=\"docutils literal\"><span class=\"pre\">request_cancel</span></code>","7.3.48. <code class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></code>","7.3.49. <code class=\"docutils literal\"><span class=\"pre\">ruby_load</span></code>","7.3.50. <code class=\"docutils literal\"><span class=\"pre\">schema</span></code>","7.3.51. <code class=\"docutils literal\"><span class=\"pre\">select</span></code>","7.3.52. <code class=\"docutils literal\"><span class=\"pre\">shutdown</span></code>","7.3.53. <code class=\"docutils literal\"><span class=\"pre\">status</span></code>","7.3.54. <code class=\"docutils literal\"><span class=\"pre\">suggest</span></code>","7.3.55. <code class=\"docutils literal\"><span class=\"pre\">table_create</span></code>","7.3.56. <code class=\"docutils literal\"><span class=\"pre\">table_list</span></code>","7.3.57. <code class=\"docutils literal\"><span class=\"pre\">table_remove</span></code>","7.3.58. <code class=\"docutils literal\"><span class=\"pre\">table_rename</span></code>","7.3.59. <code class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></code>","7.3.60. <code class=\"docutils literal\"><span class=\"pre\">thread_limit</span></code>","7.3.61. <code class=\"docutils literal\"><span class=\"pre\">tokenize</span></code>","7.3.62. <code class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></code>","7.3.63. <code class=\"docutils literal\"><span class=\"pre\">truncate</span></code>","7.16. \u8a2d\u5b9a","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. <code class=\"docutils literal\"><span class=\"pre\">between</span></code>","7.14.2. edit_distance","7.14.3. <code class=\"docutils literal\"><span class=\"pre\">geo_distance</span></code>","7.14.4. geo_in_circle","7.14.5. geo_in_rectangle","7.14.6. <code class=\"docutils literal\"><span class=\"pre\">highlight_full</span></code>","7.14.7. <code class=\"docutils literal\"><span class=\"pre\">highlight_html</span></code>","7.14.8. <code class=\"docutils literal\"><span class=\"pre\">html_untag</span></code>","7.14.9. <code class=\"docutils literal\"><span class=\"pre\">in_values</span></code>","7.14.10. now","7.14.11. <code class=\"docutils literal\"><span class=\"pre\">prefix_rk_search()</span></code>","7.14.12. <code class=\"docutils literal\"><span class=\"pre\">query</span></code>","7.14.13. rand","7.14.14. <code class=\"docutils literal\"><span class=\"pre\">snippet_html</span></code>","7.14.15. <code class=\"docutils literal\"><span class=\"pre\">sub_filter</span></code>","7.14.16. <code class=\"docutils literal\"><span class=\"pre\">vector_size</span></code>","7.12. grn_expr","7.12.1. \u30af\u30a8\u30ea\u30fc\u69cb\u6587","7.12.2. \u30b9\u30af\u30ea\u30d7\u30c8\u69cb\u6587","7.19. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9","7.21. 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.15.2. \u524d\u65b9\u4e00\u81f4RK\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. \u30b9\u30b3\u30a2\u30e9\u30fc","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>","7.20. \u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0","7.18. \u30b5\u30b8\u30a7\u30b9\u30c8","7.18.2. \u88dc\u5b8c","7.18.3. \u88dc\u6b63","7.18.1. \u306f\u3058\u3081\u306b","7.18.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.22. \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,163],"(geopoint":217,"(v":11,"-benchmark":146,"-command":78,"-create":149,"-dataset":149,"-default":28,"-document":18,"-encoding":28,"-escalation":28,"-files":12,"-gqtp":203,"-help":28,"-http":203,"-httpd":[147,150,151,201,203],"-latest":12,"-learner":151,"-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":203,"-suggest":[149,150,151],"-target":143,"-threshold":28,"-version":78,"-with":28,"-zlib":28,".max":194,".maxfileperproc":194,".overcommit":194,".po":17,".po\u30d5\u30a1\u30a4\u30eb":17,"/linux":[7,25],"=encoding":28,"=message":28,"=number":28,"=path":28,"=platform":28,"[$":[110,128],"\u3042\u3052\u308b":208,"\u3042\u308a":[170,171],"\u3042\u308b":217,"\u3044\u304f":10,"\u3044\u308b":176,"\u3044\u308d\u3044\u308d":211,"\u3046\u307e\u304f":10,"\u304a\u304f":10,"\u304a\u3055\u3089\u3044":10,"\u304a\u6c17":217,"\u304a\u77e5\u3089":[33,34,35,36],"\u304b\u3089":[6,7,8,10,24,25,26,27,28,30,31,177],"\u304c\u3063":216,"\u3053\u3061\u3089":10,"\u3053\u3068":12,"\u3054\u3068":216,"\u3055\u307e\u3056\u307e\u306a":221,"\u3059\u308b":[5,6,7,8,10,12,14,19,76,147,150,151,187,188,190,208,209,212,216],"\u305d\u306e":[28,181],"\u305f\u3044":12,"\u305f\u3081":[10,11,110,128],"\u3060\u3051":[10,76],"\u3065\u3051":78,"\u3066\u308b":217,"\u3067\u304d":[134,195],"\u3067\u304d\u308b":[10,11],"\u3068\u3057\u3066":195,"\u3068\u308a":10,"\u306a\u3044":[10,134,195],"\u306a\u3057":[171,199],"\u306a\u306b":193,"\u306b\u3088\u308b":[212,216,219],"\u306b\u5bfe\u3059\u308b":216,"\u306b\u95a2\u3059\u308b":195,"\u306e\u306b":208,"\u306e\u307f":[12,14],"\u306f\u3058\u3081":189,"\u3078\u3068":10,"\u307e\u305f":[7,216],"\u307e\u305f\u3050":216,"\u307e\u3068\u3081":12,"\u3084\u308a":10,"\u3084\u308b":12,"\u3088\u3046":[187,188,190],"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":199,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":199,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"\u30a2\u30f3\u30ab\u30fc":181,"\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,180],"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[32,172,181,213,216],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[73,214],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":132,"\u30a4\u30f3\u30dd\u30fc\u30c8":12,"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":12,"\u30a8\u30a4\u30ea\u30a2\u30b9":44,"\u30a8\u30b9\u30b1\u30fc\u30d7":[170,181],"\u30a8\u30e9\u30fc":[79,209],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":179,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":171,"\u30aa\u30d7\u30b7\u30e7\u30f3":[144,146,149],"\u30ab\u30b9\u30b1\u30fc\u30c9":97,"\u30ab\u30d0\u30ec\u30c3\u30b8":14,"\u30ab\u30e9\u30e0":[32,72,74,86,155,212,214,216],"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":216,"\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2":0,"\u30ad\u30e3\u30c3\u30b7\u30e5":[109,128,147],"\u30ad\u30fc\u30ef\u30fc\u30c9":[208,217],"\u30af\u30a8\u30ea":[0,11,220],"\u30af\u30a8\u30ea\u30fc":[147,170,179],"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":147,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":1,"\u30af\u30e9\u30b9":181,"\u30b0\u30eb\u30fc\u30d7":[170,171,181],"\u30b1\u30fc\u30b9":134,"\u30b3\u30de\u30f3\u30c9":[77,141,143,145,148,185,214,218],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[78,199],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":146,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[145,150,178],"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":2,"\u30b3\u30e1\u30f3\u30c8":217,"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[3,15],"\u30b5\u30b8\u30a7\u30b9\u30c8":186,"\u30b5\u30f3\u30d7\u30eb":[144,146],"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[170,171],"\u30b5\u30fc\u30d0":[0,205,218],"\u30b5\u30fc\u30d0\u30fc":[148,196,203],"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":203,"\u30b7\u30b9\u30c6\u30e0":[19,217],"\u30b7\u30d5\u30c8":171,"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0":185,"\u30b8\u30aa\u30b5\u30fc\u30c1":213,"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":75,"\u30b9\u30af\u30ea\u30d7\u30c8":[12,171],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":146,"\u30b9\u30b3\u30a2\u30e9\u30fc":182,"\u30b9\u30b3\u30a2\u30fc":128,"\u30b9\u30bf\u30a4\u30eb":128,"\u30b9\u30c8\u30ec\u30fc\u30b8":0,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":0,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":218,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":171,"\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":[212,221],"\u30bf\u30b0":213,"\u30bf\u30b0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":132,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":199,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":12,"\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8":[6,7,8],"\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0":2,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":210,"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0":194,"\u30c4\u30a4\u30fc\u30c8":10,"\u30c4\u30fc\u30eb":[28,147,218],"\u30c6\u30b9\u30c8":14,"\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":14,"\u30c6\u30fc\u30d6\u30eb":[32,86,116,132,151,164,191,195,211,214,216,217],"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":147,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":12,"\u30c7\u30d0\u30c3\u30ac":14,"\u30c7\u30fc\u30bf":[132,187,190,195,211,214,217],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[116,199,214],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":147,"\u30c7\u30fc\u30e2\u30f3":205,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[146,207],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":0,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[193,208],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":193,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":192,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[12,15,22],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[110,128,212],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":174,"\u30ce\u30fc\u30de\u30eb\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":76,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":217,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":202,"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":19,"\u30d0\u30fc\u30b8\u30e7\u30f3":[12,34,35,36,78],"\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba":12,"\u30d1\u30c3\u30b1\u30fc\u30b8":12,"\u30d1\u30c3\u30c1":17,"\u30d1\u30c8\u30ea\u30b7\u30a2":219,"\u30d1\u30e9\u30e1\u30fc\u30bf":[78,216],"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[110,128],"\u30d3\u30c3\u30c8":171,"\u30d3\u30eb\u30c9":[5,6,7,8,12,24,25,26,27,28,30,31],"\u30d5\u30a1\u30a4\u30eb":[11,12,17,18,142,180,194,199],"\u30d5\u30a9\u30ed\u30fc":217,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[128,173,180],"\u30d5\u30ec\u30fc\u30ba":170,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":218,"\u30d6\u30ed\u30b0":12,"\u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8":80,"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":199,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":12,"\u30d7\u30ed\u30bb\u30b9":194,"\u30d7\u30ed\u30c8\u30b3\u30eb":205,"\u30d8\u30c3\u30c0\u30fc":205,"\u30d9\u30af\u30bf\u30fc":195,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[76,211],"\u30da\u30fc\u30b8\u30f3\u30b0":128,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":217,"\u30de\u30c3\u30c1":171,"\u30de\u30c3\u30c1\u30ab\u30e9\u30e0":170,"\u30e1\u30e2\u30ea":194,"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[2,19],"\u30e2\u30b8\u30e5\u30fc\u30eb":147,"\u30e6\u30fc\u30b6\u30fc":[10,217],"\u30e6\u30fc\u30b6\u30fcid":217,"\u30e9\u30a4\u30d6\u30e9\u30ea":[0,28],"\u30ea\u30af\u30a8\u30b9\u30c8":81,"\u30ea\u30af\u30a8\u30b9\u30c8id":81,"\u30ea\u30bd\u30fc\u30b9":134,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":82,"\u30ea\u30c6\u30e9\u30eb":171,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7":147,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70],"\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":218,"\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":185,"\u30ec\u30b3\u30fc\u30c9":[128,214],"\u30ec\u30b3\u30fc\u30c9id":191,"\u30ed\u30b0":106,"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":0,"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":106,"\u30ed\u30fc\u30c9":[76,214,217],"\u30ed\u30fc\u30de":177,"\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":14,"\u4e00\u6642":191,"\u4e00\u6642\u30c6\u30fc\u30d6\u30eb":[],"\u4e00\u81f4":[206,219],"\u4e00\u81f4rk":[],"\u4e00\u89a7":[82,141,143,174,179,185,217],"\u4e0a\u9650":32,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":14,"\u4e0d\u7b49\u4fa1":[170,171],"\u4e26\u3079":214,"\u4e26\u5217":12,"\u4e3b\u30ad\u30fc":[195,219],"\u4e57\u7b97":171,"\u4e8b\u9805":[32,146,195],"\u4ed5\u65b9":17,"\u4ed5\u69d8":204,"\u4ed8\u304d":[171,213],"\u4ed8\u4e0e":216,"\u4ee3\u5165":171,"\u4ee3\u5165\u5f0f":170,"\u4ee5\u4e0a":[170,171],"\u4ee5\u4e0b":170,"\u4ee5\u4e0b\u6f14":171,"\u4f4d\u7f6e":[0,78,155,176,217,221],"\u4f5c\u308a\u65b9":76,"\u4f5c\u308b":6,"\u4f5c\u6210":[12,132,214,215,217],"\u4f5c\u696d":12,"\u4f7f\u3044":206,"\u4f7f\u3044\u65b9":[44,73,75,76,80,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,143,145,146,147,150,151,153,155,158,159,160,161,163,164,166,167,168,172,177,178,180,181,182,183,184,187,188,190],"\u4f7f\u3046":[147,155],"\u4f7f\u3063":[6,7,8],"\u4f7f\u7528":194,"\u4f8b\u3048":10,"\u4f9d\u5b58":28,"\u4fdd\u5b58":[132,211],"\u4fee\u6b63":[33,34,35,36,37,39,40,41,42],"\u5165\u308a":217,"\u5165\u6f14":171,"\u5168\u4f53":46,"\u5168\u6587":[0,208,214,216,221],"\u5168\u6587\u691c":[214,215],"\u5168\u6587\u691c\u7d22":170,"\u5171\u6709":0,"\u5171\u8d77":[187,188,190],"\u518d\u8d77\u52d5":203,"\u51fa\u529b":[17,79,110,128,178,214],"\u5206\u3051":206,"\u5229\u7528":[134,147,192,221],"\u5236\u5fa1":171,"\u5236\u9650":[32,76,146,180,191,195,212],"\u524a\u6e1b":134,"\u524a\u9664":[97,134],"\u524d\u63d0":12,"\u524d\u65b9":219,"\u524d\u65b9\u4e00\u81f4":[170,171,177,187],"\u5270\u4f59":171,"\u5272\u308a":81,"\u52a0\u7b97":171,"\u52d5\u4f5c":[12,14,187,188,190],"\u52d5\u7684":172,"\u5354\u529b":10,"\u5358\u8a9e":171,"\u5373\u6642":0,"\u539f\u56e0":208,"\u53c2\u7167":[0,205,211,213],"\u53c2\u7167\u578b":76,"\u53c2\u8003":[6,7,8,44,79,81,82,83,85,88,91,92,93,95,97,100,101,103,104,105,106,111,113,114,118,119,121,122,124,125,126,127,128,131,132,136,138,139,149,158,159,163,164,166,167,169,174,177,180,183,184,191,192],"\u53d6\u5f97":[12,214],"\u53e4\u3044":33,"\u53ef\u80fd":[0,86,91,92,93,94,98,99,107,108,109,110,111,112,113,115,116,117,127,130,136,137,138,147,150,155,159,164,183,184,192],"\u540c\u3058":208,"\u540d\u524d":[74,144,146,148,149,154,156,157,162,165,195],"\u5411\u3051":[4,12],"\u5426\u5b9a":[170,171],"\u547c\u3073\u51fa\u3057":171,"\u547d\u4ee4":146,"\u548c\u4ee3":171,"\u548c\u6f14":171,"\u56de\u907f":209,"\u56fd\u969b\u5316":17,"\u5727\u7e2e":199,"\u57fa\u672c":[134,171,214],"\u5831\u544a":19,"\u5834\u5408":[12,79,216],"\u5834\u6240":[10,180],"\u5909\u63db":177,"\u5909\u66f4":[35,86,199,208],"\u5909\u66f4\u70b9":12,"\u5927\u306a\u308a":[170,171],"\u5b66\u7fd2":[150,187,188,189,190],"\u5b8c\u5168":206,"\u5b9f\u4f8b":11,"\u5b9f\u73fe":11,"\u5b9f\u884c":[6,7,8,11,12,14,142,146,147],"\u5b9f\u9a13":37,"\u5bc6\u9375":12,"\u5bfe\u5fdc":[10,176,199],"\u5bfe\u7b56":[208,209],"\u5c0f\u306a\u308a":[170,171],"\u5c0f\u6570":171,"\u5c55\u958b":179,"\u5dee\u6f14":171,"\u5ea7\u6a19\u5024":171,"\u5f15\u6570":[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,115,116,117,120,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,140,144,145,146,150,151,153,154,155,156,157,158,159,160,161,163,164,165,167,168,183,184,194],"\u5f53\u3066\u308b":81,"\u5f62\u5f0f":[79,100],"\u5f8c\u65b9":219,"\u5f8c\u65b9\u4e00\u81f4":[170,171],"\u5fc5\u8981":[6,7,8,18,160],"\u5fc5\u9808":[86,88,90,91,92,93,94,99,107,108,109,110,111,112,113,115,116,117,124,127,128,130,134,135,136,137,138,140,150,155,159,164,183,184],"\u6027\u80fd":[147,199],"\u60c5\u5831":[0,4,10,14,176,217,221],"\u611f\u8b1d":[33,34,35,36,37,38,39,40,41],"\u6210\u529f":79,"\u6210\u679c":17,"\u623b\u308a\u5024":[83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,148,150,153,155,158,159,160,161,163,164,166,167,168,183,184],"\u624b\u9806":12,"\u6295\u7a3f":217,"\u62bd\u51fa":[171,190],"\u62e1\u5f35":220,"\u6307\u5b9a":[12,78,155,170,195,214,216],"\u6307\u91dd":10,"\u6319\u52d5":206,"\u6392\u4ed6":171,"\u63a5\u7d9a":205,"\u63d0\u4f9b":10,"\u63d0\u6848":[150,189,190],"\u64cd\u4f5c":[175,214],"\u64ec\u4f3c":74,"\u6539\u826f":[33,34,35,36,37,38,39,40,41,42],"\u6570\u5024":211,"\u6574\u6570":171,"\u6587\u5b57":181,"\u6587\u5b57\u5217":[171,211],"\u6587\u66f8":[171,188],"\u6587\u6cd5":221,"\u65b0\u3057\u3044":17,"\u65b0\u898f":12,"\u65b9\u6cd5":[3,5,6,7,8,12,14,15,17,44,76,78,81,86,172,175,187,188,190,208,209],"\u65e5\u6642":211,"\u660e\u793a":12,"\u660e\u793a\u7684":155,"\u6642\u9593":[171,217],"\u66f4\u65b0":[0,12,17,187],"\u66f8\u304d":206,"\u66f8\u5f0f":[144,146,147,148,150,151,154,156,157,162,165,214],"\u66ff\u3048":214,"\u6700\u5927":194,"\u6761\u4ef6":[12,128,160,170,221],"\u6761\u4ef6\u5f0f":170,"\u683c\u7d0d":195,"\u691c\u51fa":14,"\u691c\u7d22":[0,76,110,128,132,170,171,176,177,187,188,190,206,208,213,214,216,217,219,220,221],"\u691c\u7d22\u4f8b":11,"\u6982\u8981":[0,44,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,73,75,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,145,147,148,150,151,153,155,158,159,160,161,163,164,166,167,168,174,177,180,181,182,183,184,185,191,192,193,194],"\u69cb\u6587":[83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,143,145,153,155,158,159,160,161,163,164,166,167,168,170,171,181,183,184],"\u69cb\u7bc9":[14,172],"\u69d8\u3005":14,"\u6a5f\u80fd":176,"\u6b63\u898f":[170,171,181],"\u6bd4\u8f03":[171,199],"\u6c38\u7d9a":191,"\u6d41\u308c":17,"\u6d6e\u52d5":171,"\u6e1b\u7b97":171,"\u6e96\u5099":[12,220],"\u6f14\u7b97\u5b50":171,"\u70b9\u6570":171,"\u7279\u5b9a":[12,14],"\u7279\u5fb4":[0,191],"\u7279\u6709":147,"\u7279\u6b8a":146,"\u72ec\u81ea":171,"\u7406\u7531":10,"\u74b0\u5883":[12,14],"\u751f\u6210":[12,17,18],"\u7528\u3044":[106,221],"\u7528\u79d8":12,"\u7528\u8a9e\u96c6":185,"\u7570\u306a\u308b":208,"\u767b\u9332":19,"\u7701\u7565":[86,91,92,93,94,98,99,107,108,109,110,111,112,113,115,116,117,127,130,136,137,138,150,155,159,164,183,184],"\u771f\u507d\u5024":[171,211],"\u77e5\u308a":12,"\u78ba\u8a8d":[12,17],"\u7a2e\u985e":211,"\u7a4d\u4ee3":171,"\u7a4d\u6f14":171,"\u7b26\u53f7":171,"\u7b49\u4fa1":[170,171],"\u7b97\u5b50":171,"\u7b97\u8853":171,"\u7ba1\u7406":[147,218],"\u7bc4\u56f2":[132,214],"\u7c21\u5358":[110,128],"\u7d22\u5f15":0,"\u7d22\u7528":[214,215],"\u7d42\u4e86":[147,203,205],"\u7d44\u307f\u8fbc\u307f":[145,174,182,193],"\u7d44\u8fbc\u578b":195,"\u7d4c\u5ea6":0,"\u7d4c\u7def\u5ea6":211,"\u7d50\u5408\u5f0f":170,"\u7d50\u679c":[146,208,212,214],"\u7d5e\u8fbc":221,"\u7de8\u96c6":17,"\u7def\u5ea6":0,"\u7f6e\u63db":164,"\u7f72\u540d":12,"\u7ffb\u8a33":[12,17],"\u8868\u73fe":[11,170,171,181],"\u8868\u793a":214,"\u88dc\u5b8c":[187,189],"\u88dc\u6b63":[188,189],"\u8907\u6570":[199,212,216],"\u89e3\u6790":14,"\u89e3\u6c7a":44,"\u8a00\u8a9e":17,"\u8a2d\u5b9a":[12,21,46,86,141,147,150,199],"\u8a8d\u8a3c":199,"\u8a98\u5c0e":10,"\u8a9e\u5f59":[214,215],"\u8a9e\u5f59\u8868":132,"\u8aac\u660e":[74,144,146,154,156,157,162,165,195],"\u8aad\u307f":[177,187],"\u8ab2\u984c":19,"\u8ad6\u7406":[170,171],"\u8ad6\u7406\u548c":170,"\u8ad6\u7406\u7a4d":170,"\u8d77\u52d5":[203,205,218],"\u8ee2\u7f6e":0,"\u8fd1\u508d":171,"\u8fd4\u5024":[154,156,157,162,165],"\u8ffd\u52a0":[12,17,174],"\u8ffd\u8de1":19,"\u9001\u308a\u65b9":[17,19],"\u9001\u4fe1":218,"\u9006\u5f15\u304d":213,"\u901a\u4fe1":9,"\u9032\u3081":10,"\u904e\u53bb":10,"\u9055\u3044":110,"\u9069\u7528":76,"\u9078\u629e":181,"\u90e8\u5206":[],"\u90e8\u5206\u4e00\u81f4":206,"\u914d\u5217":171,"\u91cd\u307f":[76,216],"\u91cd\u307f\u4ed8\u304d":76,"\u91cf\u6307\u5b9a\u5b50":181,"\u958b\u3051\u308b":194,"\u958b\u767a":[4,10,20],"\u95a2\u4fc2":[28,110,128,213],"\u95a2\u4fc2\u5f0f":11,"\u95a2\u6570":[14,152,171],"\u95a2\u9023":[15,109,110,128,147,151,216],"\u95be\u5024":208,"\u9664\u7b97":171,"\u96c6\u8a08":0,"\u9759\u7684":[14,172],"\u975e\u308f\u304b\u3061":206,"\u985e\u4f3c":[171,188],"\u9ad8\u5ea6":[110,128],"\uff08personal":30,"_*":66,"_acquire":101,"_api":11,"_at":183,"_auto":147,"_base":147,"_border":[107,109,110,112,153],"_cache":[47,147],"_calc":[110,128],"_cancel":124,"_circle":156,"_clear":102,"_column":48,"_columns":[109,110,128,164,216],"_command":49,"_content":50,"_copy":86,"_count":[107,194],"_create":[87,132,147],"_ctx":51,"_cursor":[58,65],"_dat":191,"_data":68,"_database":147,"_db":52,"_delete":91,"_distance":[154,155],"_encoding":53,"_equal":11,"_escalation":[60,110,128],"_escape":158,"_eval":125,"_exist":115,"_expander":[110,128,164],"_expansion":128,"_expr":[11,54,169],"_filter":[109,121,127,167],"_filters":[127,132,138],"_flags":[110,128],"_flush":99,"_full":158,"_geo":55,"_get":92,"_hash":191,"_hook":56,"_html":[158,159,166],"_id":116,"_idf":184,"_ii":57,"_in":[156,157],"_index":[58,108,109],"_indexes":98,"_info":59,"_inspect":116,"_install":28,"_key":[107,109,110,112,116,191],"_level":[104,147],"_limit":[83,110,128,137,147],"_list":[88,111,114,133,139],"_load":126,"_log":147,"_map":194,"_match":60,"_max":116,"_memory":194,"_most":183,"_n":116,"_name":[86,90,99,101,102,103,116,123,135,140,158],"_no":191,"_not":[91,93,101,103],"_obj":61,"_of":116,"_offset":[110,128],"_or":[91,93,101,103,153],"_output":[110,128],"_pack":28,"_parameters":108,"_pat":191,"_path":[147,150,151],"_plugins":98,"_prefix":28,"_proc":62,"_processes":147,"_put":105,"_query":147,"_range":109,"_records":[98,116],"_rectangle":157,"_register":118,"_release":103,"_remove":[89,112,117,134],"_rename":[90,135],"_reopen":106,"_rk":163,"_schema":98,"_search":[63,163],"_select":[11,110],"_selector":95,"_set":93,"_shard":111,"_size":[116,168],"_sortby":[110,128],"_string":[164,167],"_table":[11,64,65,86,107,109,110,111,112,116],"_tagn":158,"_target":[110,128],"_tf":[183,184],"_thread":66,"_threshold":[110,128],"_tokenize":136,"_tokenizer":132,"_total":116,"_type":[50,67,116,132,155,205],"_types":[110,128],"_unmap":94,"_unregister":119,"_untag":160,"_user":68,"_value":[116,153,161],"_values":161,"_version":[49,78],"cpu\u30b3\u30a2":199,"default":[78,132],"delete":97,"float":195,"in":[42,161],"int":195,"new":[90,135],"null":171,"package":30,"with":18,"}]":[110,128],adjuster:128,allocate:209,api:[16,45],approximate:155,archive:30,arg:11,autotools:6,between:153,bigram:217,blogroonga:12,body:79,bool:195,cache:[83,109,128],calc:110,callback:11,cannot:209,cast:71,centos:24,changes:42,check:[84,143],ci:21,clang:14,clearlock:85,client:145,clone:17,close:158,cmake:[7,8],column:[86,87,88,89,90,127,153,158,163,183,184],command:[78,127],comments:217,config:[91,92,93],configure:[6,12,18,28],contain:11,cutter:[12,14],daemon:145,data:151,database:[94,116,150,151],db:11,debian:[12,25],define:95,defrag:96,desctipion:149,domain:212,drilldown:[110,128],dump:98,edit:154,ellipsoid:155,enable:18,equal:11,executable:145,exit:149,facebook:2,fedora:26,file:145,files:[149,151],filter:[107,109,110,128,167],flags:[113,132,136,138,205],force:117,freebsd:194,from:[86,151],geo:[155,156,157],geoindex:217,geopoint:[195,217],get:150,gnu:[6,7,25],gqtp:[9,197,203,205],greater:11,grn:[11,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,169],grndb:143,grnslap:144,grntest:12,groonga:[0,3,4,5,6,7,8,9,11,12,17,22,42,145,146,147,148,149,150,151,200,201,203],gzip:199,hashtags:217,hat:12,header:[79,91,92,93,101,103,127],highlight:[158,159],homebrew:[12,27],how:197,html:[17,18,160],http:[148,178,198,203,218],https:199,id:[81,124],index:[127,183,184],install:28,introduction:18,io:99,javascript:221,jessie:25,json:[79,100],kern:194,key:[91,92,93,132],keys:[110,128],keywordn:158,label:[110,128],launch:150,lcov:14,learning:151,less:11,libmemcached:14,limit:[109,110,128],linux:194,load:100,location:155,lock:[101,102,103],log:[104,105,106,151,173],logical:[107,108,109,110,111,112],longtext:195,mac:27,macports:27,make:[6,7,12,28],match:[110,128,164,216],max:[83,107,109,110,112,137,153],memcached:202,memory:209,messagepack:79,min:[107,109,110,112,153],mmap:209,mode:[11,136,138,145],mroonga:0,name:[90,115,116,117,132,134,135],near:11,news:42,nginx:147,nofile:194,normalize:113,normalizer:[113,114,127,132,138,158],normalizerauto:174,normalizernfkc:174,normalizers:127,not:11,now:162,object:[115,116,117],offset:[109,110,128],open:158,options:[145,150,151],oracle:29,order:109,os:27,output:[109,110,128],path:126,period:42,plugin:[70,118,119,127],plugins:127,po:12,point:155,post:[147,199],ppa:30,prefix:[11,163],process:173,protocol:205,proxy:147,pull:17,query:[110,128,163,164,173,205],queryexpandertsv:180,quit:120,rand:165,range:[108,121],recover:143,rectangle:155,recursive:99,red:12,redmine:10,register:122,reindex:123,release:[],request:[17,124,150],rk:[177,187],ruby:[125,126],run:[18,197],schema:127,scope:167,scorer:[110,128,183,184,221],script:125,select:[110,128],senna:42,server:145,shard:[107,109,110,112],shorttext:195,shutdown:129,similar:11,size:205,snippet:166,solaris:29,sortby:[110,128],source:127,sphere:155,standalone:145,status:[130,149,205],string:[113,136,138],sub:167,succeeded:[91,93,101,103],suffix:11,suggest:131,summary:197,synopstis:149,table:[88,90,116,127,128,132,133,134,135,136,191],tables:[98,127],target:[99,101,102,103,123,140,161,168],text:[159,195],thread:137,time:195,tips:12,to:[86,150,197],todo:[164,166],token:[127,132,138],tokenbigram:193,tokenbigramignoreblank:193,tokenbigramignoreblanksplitsymbol:193,tokenbigramignoreblanksplitsymbolalpha:193,tokenbigramignoreblanksplitsymbolalphadigit:193,tokenbigramsplitsymbol:193,tokenbigramsplitsymbolalpha:193,tokenbigramsplitsymbolalphadigit:193,tokendelimit:193,tokendelimitnull:193,tokenfilterstem:192,tokenfilterstopword:192,tokenize:138,tokenizer:[127,138,139],tokenizers:127,tokenmecab:193,tokenregexp:193,tokentrigram:193,tokenunigram:193,tokyogeopoint:195,travis:21,truncate:140,tsv:[79,180],twitter:[2,10,12],type:[116,127],types:127,ubuntu:[12,30],uint:195,unix:7,update:[12,18],use:[109,158],users:217,value:[92,93,132,161],vector:168,vm:194,wgs:195,wheezy:25,windows:[8,12,31],worker:147,xml:79,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.1.0-71-g748d76eドキュメント</title>
10
+ <title>5. サーバー &mdash; Groonga v5.1.2-250-gb1f40beドキュメント</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.1.0-71-g748d76e',
18
+ VERSION: '5.1.2-250-gb1f40be',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,7 +26,7 @@
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.1.0-71-g748d76eドキュメント" href="index.html" />
29
+ <link rel="top" title="Groonga v5.1.2-250-gb1f40beドキュメント" 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>
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="tutorial/query_expansion.html" title="4.11. クエリ拡張"
62
62
  accesskey="P">前へ</a> |</li>
63
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.0-71-g748d76eドキュメント</a> &raquo;</li>
63
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.2-250-gb1f40beドキュメント</a> &raquo;</li>
64
64
  </ul>
65
65
  </div>
66
66
 
@@ -143,11 +143,11 @@
143
143
  <li class="right" >
144
144
  <a href="tutorial/query_expansion.html" title="4.11. クエリ拡張"
145
145
  >前へ</a> |</li>
146
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.0-71-g748d76eドキュメント</a> &raquo;</li>
146
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.2-250-gb1f40beドキュメント</a> &raquo;</li>
147
147
  </ul>
148
148
  </div>
149
149
  <div class="footer" role="contentinfo">
150
- &copy; Copyright 2009-2015, Brazil, Inc.
150
+ &copy; Copyright 2009-2016, Brazil, Inc.
151
151
  </div>
152
152
  </body>
153
153
  </html>
@@ -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.1.0-71-g748d76eドキュメント</title>
10
+ <title>5.3. GQTP &mdash; Groonga v5.1.2-250-gb1f40beドキュメント</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.1.0-71-g748d76e',
18
+ VERSION: '5.1.2-250-gb1f40be',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,7 +26,7 @@
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.1.0-71-g748d76eドキュメント" href="../index.html" />
29
+ <link rel="top" title="Groonga v5.1.2-250-gb1f40beドキュメント" 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" />
@@ -61,7 +61,7 @@
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 class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.0-71-g748d76eドキュメント</a> &raquo;</li>
64
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.2-250-gb1f40beドキュメント</a> &raquo;</li>
65
65
  <li class="nav-item nav-item-1"><a href="../server.html" accesskey="U">5. サーバー</a> &raquo;</li>
66
66
  </ul>
67
67
  </div>
@@ -100,12 +100,12 @@ HTTP client libraries.</p>
100
100
  <h2>5.3.2. How to run<a class="headerlink" href="#how-to-run" title="このヘッドラインへのパーマリンク">¶</a></h2>
101
101
  <p><a class="reference internal" href="../reference/executables/groonga.html"><em>groonga executable file</em></a> is a GQTP server implementation.
102
102
  You can run a Groonga server by the following command line:</p>
103
- <div class="highlight-none"><div class="highlight"><pre>groonga --protocol gqtp -s [options] DB_PATH
103
+ <div class="highlight-none"><div class="highlight"><pre><span></span>groonga --protocol gqtp -s [options] DB_PATH
104
104
  </pre></div>
105
105
  </div>
106
106
  <p>You can run a Groonga server as a daemon by the following command
107
107
  line:</p>
108
- <div class="highlight-none"><div class="highlight"><pre>groonga --protocol gqtp -d [options] DB_PATH
108
+ <div class="highlight-none"><div class="highlight"><pre><span></span>groonga --protocol gqtp -d [options] DB_PATH
109
109
  </pre></div>
110
110
  </div>
111
111
  <p>利用可能なオプションについては、 <a class="reference internal" href="../reference/executables/groonga.html"><em>groonga executable file</em></a> を参照してください。</p>
@@ -169,12 +169,12 @@ line:</p>
169
169
  <li class="right" >
170
170
  <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
171
171
  >前へ</a> |</li>
172
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.0-71-g748d76eドキュメント</a> &raquo;</li>
172
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.2-250-gb1f40beドキュメント</a> &raquo;</li>
173
173
  <li class="nav-item nav-item-1"><a href="../server.html" >5. サーバー</a> &raquo;</li>
174
174
  </ul>
175
175
  </div>
176
176
  <div class="footer" role="contentinfo">
177
- &copy; Copyright 2009-2015, Brazil, Inc.
177
+ &copy; Copyright 2009-2016, Brazil, Inc.
178
178
  </div>
179
179
  </body>
180
180
  </html>