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
@@ -0,0 +1,534 @@
1
+ # /* Copyright (C) 2001
2
+ # * Housemarque Oy
3
+ # * http://www.housemarque.com
4
+ # *
5
+ # * Distributed under the Boost Software License, Version 1.0. (See
6
+ # * accompanying file LICENSE_1_0.txt or copy at
7
+ # * http://www.boost.org/LICENSE_1_0.txt)
8
+ # */
9
+ #
10
+ # /* Revised by Paul Mensonides (2002) */
11
+ #
12
+ # /* See http://www.boost.org for most recent version. */
13
+ #
14
+ # ifndef MSGPACK_PREPROCESSOR_REPETITION_DETAIL_EDG_FOR_HPP
15
+ # define MSGPACK_PREPROCESSOR_REPETITION_DETAIL_EDG_FOR_HPP
16
+ #
17
+ # include <msgpack/preprocessor/control/if.hpp>
18
+ # include <msgpack/preprocessor/tuple/eat.hpp>
19
+ #
20
+ # define MSGPACK_PP_FOR_1(s, p, o, m) MSGPACK_PP_FOR_1_I(s, p, o, m)
21
+ # define MSGPACK_PP_FOR_2(s, p, o, m) MSGPACK_PP_FOR_2_I(s, p, o, m)
22
+ # define MSGPACK_PP_FOR_3(s, p, o, m) MSGPACK_PP_FOR_3_I(s, p, o, m)
23
+ # define MSGPACK_PP_FOR_4(s, p, o, m) MSGPACK_PP_FOR_4_I(s, p, o, m)
24
+ # define MSGPACK_PP_FOR_5(s, p, o, m) MSGPACK_PP_FOR_5_I(s, p, o, m)
25
+ # define MSGPACK_PP_FOR_6(s, p, o, m) MSGPACK_PP_FOR_6_I(s, p, o, m)
26
+ # define MSGPACK_PP_FOR_7(s, p, o, m) MSGPACK_PP_FOR_7_I(s, p, o, m)
27
+ # define MSGPACK_PP_FOR_8(s, p, o, m) MSGPACK_PP_FOR_8_I(s, p, o, m)
28
+ # define MSGPACK_PP_FOR_9(s, p, o, m) MSGPACK_PP_FOR_9_I(s, p, o, m)
29
+ # define MSGPACK_PP_FOR_10(s, p, o, m) MSGPACK_PP_FOR_10_I(s, p, o, m)
30
+ # define MSGPACK_PP_FOR_11(s, p, o, m) MSGPACK_PP_FOR_11_I(s, p, o, m)
31
+ # define MSGPACK_PP_FOR_12(s, p, o, m) MSGPACK_PP_FOR_12_I(s, p, o, m)
32
+ # define MSGPACK_PP_FOR_13(s, p, o, m) MSGPACK_PP_FOR_13_I(s, p, o, m)
33
+ # define MSGPACK_PP_FOR_14(s, p, o, m) MSGPACK_PP_FOR_14_I(s, p, o, m)
34
+ # define MSGPACK_PP_FOR_15(s, p, o, m) MSGPACK_PP_FOR_15_I(s, p, o, m)
35
+ # define MSGPACK_PP_FOR_16(s, p, o, m) MSGPACK_PP_FOR_16_I(s, p, o, m)
36
+ # define MSGPACK_PP_FOR_17(s, p, o, m) MSGPACK_PP_FOR_17_I(s, p, o, m)
37
+ # define MSGPACK_PP_FOR_18(s, p, o, m) MSGPACK_PP_FOR_18_I(s, p, o, m)
38
+ # define MSGPACK_PP_FOR_19(s, p, o, m) MSGPACK_PP_FOR_19_I(s, p, o, m)
39
+ # define MSGPACK_PP_FOR_20(s, p, o, m) MSGPACK_PP_FOR_20_I(s, p, o, m)
40
+ # define MSGPACK_PP_FOR_21(s, p, o, m) MSGPACK_PP_FOR_21_I(s, p, o, m)
41
+ # define MSGPACK_PP_FOR_22(s, p, o, m) MSGPACK_PP_FOR_22_I(s, p, o, m)
42
+ # define MSGPACK_PP_FOR_23(s, p, o, m) MSGPACK_PP_FOR_23_I(s, p, o, m)
43
+ # define MSGPACK_PP_FOR_24(s, p, o, m) MSGPACK_PP_FOR_24_I(s, p, o, m)
44
+ # define MSGPACK_PP_FOR_25(s, p, o, m) MSGPACK_PP_FOR_25_I(s, p, o, m)
45
+ # define MSGPACK_PP_FOR_26(s, p, o, m) MSGPACK_PP_FOR_26_I(s, p, o, m)
46
+ # define MSGPACK_PP_FOR_27(s, p, o, m) MSGPACK_PP_FOR_27_I(s, p, o, m)
47
+ # define MSGPACK_PP_FOR_28(s, p, o, m) MSGPACK_PP_FOR_28_I(s, p, o, m)
48
+ # define MSGPACK_PP_FOR_29(s, p, o, m) MSGPACK_PP_FOR_29_I(s, p, o, m)
49
+ # define MSGPACK_PP_FOR_30(s, p, o, m) MSGPACK_PP_FOR_30_I(s, p, o, m)
50
+ # define MSGPACK_PP_FOR_31(s, p, o, m) MSGPACK_PP_FOR_31_I(s, p, o, m)
51
+ # define MSGPACK_PP_FOR_32(s, p, o, m) MSGPACK_PP_FOR_32_I(s, p, o, m)
52
+ # define MSGPACK_PP_FOR_33(s, p, o, m) MSGPACK_PP_FOR_33_I(s, p, o, m)
53
+ # define MSGPACK_PP_FOR_34(s, p, o, m) MSGPACK_PP_FOR_34_I(s, p, o, m)
54
+ # define MSGPACK_PP_FOR_35(s, p, o, m) MSGPACK_PP_FOR_35_I(s, p, o, m)
55
+ # define MSGPACK_PP_FOR_36(s, p, o, m) MSGPACK_PP_FOR_36_I(s, p, o, m)
56
+ # define MSGPACK_PP_FOR_37(s, p, o, m) MSGPACK_PP_FOR_37_I(s, p, o, m)
57
+ # define MSGPACK_PP_FOR_38(s, p, o, m) MSGPACK_PP_FOR_38_I(s, p, o, m)
58
+ # define MSGPACK_PP_FOR_39(s, p, o, m) MSGPACK_PP_FOR_39_I(s, p, o, m)
59
+ # define MSGPACK_PP_FOR_40(s, p, o, m) MSGPACK_PP_FOR_40_I(s, p, o, m)
60
+ # define MSGPACK_PP_FOR_41(s, p, o, m) MSGPACK_PP_FOR_41_I(s, p, o, m)
61
+ # define MSGPACK_PP_FOR_42(s, p, o, m) MSGPACK_PP_FOR_42_I(s, p, o, m)
62
+ # define MSGPACK_PP_FOR_43(s, p, o, m) MSGPACK_PP_FOR_43_I(s, p, o, m)
63
+ # define MSGPACK_PP_FOR_44(s, p, o, m) MSGPACK_PP_FOR_44_I(s, p, o, m)
64
+ # define MSGPACK_PP_FOR_45(s, p, o, m) MSGPACK_PP_FOR_45_I(s, p, o, m)
65
+ # define MSGPACK_PP_FOR_46(s, p, o, m) MSGPACK_PP_FOR_46_I(s, p, o, m)
66
+ # define MSGPACK_PP_FOR_47(s, p, o, m) MSGPACK_PP_FOR_47_I(s, p, o, m)
67
+ # define MSGPACK_PP_FOR_48(s, p, o, m) MSGPACK_PP_FOR_48_I(s, p, o, m)
68
+ # define MSGPACK_PP_FOR_49(s, p, o, m) MSGPACK_PP_FOR_49_I(s, p, o, m)
69
+ # define MSGPACK_PP_FOR_50(s, p, o, m) MSGPACK_PP_FOR_50_I(s, p, o, m)
70
+ # define MSGPACK_PP_FOR_51(s, p, o, m) MSGPACK_PP_FOR_51_I(s, p, o, m)
71
+ # define MSGPACK_PP_FOR_52(s, p, o, m) MSGPACK_PP_FOR_52_I(s, p, o, m)
72
+ # define MSGPACK_PP_FOR_53(s, p, o, m) MSGPACK_PP_FOR_53_I(s, p, o, m)
73
+ # define MSGPACK_PP_FOR_54(s, p, o, m) MSGPACK_PP_FOR_54_I(s, p, o, m)
74
+ # define MSGPACK_PP_FOR_55(s, p, o, m) MSGPACK_PP_FOR_55_I(s, p, o, m)
75
+ # define MSGPACK_PP_FOR_56(s, p, o, m) MSGPACK_PP_FOR_56_I(s, p, o, m)
76
+ # define MSGPACK_PP_FOR_57(s, p, o, m) MSGPACK_PP_FOR_57_I(s, p, o, m)
77
+ # define MSGPACK_PP_FOR_58(s, p, o, m) MSGPACK_PP_FOR_58_I(s, p, o, m)
78
+ # define MSGPACK_PP_FOR_59(s, p, o, m) MSGPACK_PP_FOR_59_I(s, p, o, m)
79
+ # define MSGPACK_PP_FOR_60(s, p, o, m) MSGPACK_PP_FOR_60_I(s, p, o, m)
80
+ # define MSGPACK_PP_FOR_61(s, p, o, m) MSGPACK_PP_FOR_61_I(s, p, o, m)
81
+ # define MSGPACK_PP_FOR_62(s, p, o, m) MSGPACK_PP_FOR_62_I(s, p, o, m)
82
+ # define MSGPACK_PP_FOR_63(s, p, o, m) MSGPACK_PP_FOR_63_I(s, p, o, m)
83
+ # define MSGPACK_PP_FOR_64(s, p, o, m) MSGPACK_PP_FOR_64_I(s, p, o, m)
84
+ # define MSGPACK_PP_FOR_65(s, p, o, m) MSGPACK_PP_FOR_65_I(s, p, o, m)
85
+ # define MSGPACK_PP_FOR_66(s, p, o, m) MSGPACK_PP_FOR_66_I(s, p, o, m)
86
+ # define MSGPACK_PP_FOR_67(s, p, o, m) MSGPACK_PP_FOR_67_I(s, p, o, m)
87
+ # define MSGPACK_PP_FOR_68(s, p, o, m) MSGPACK_PP_FOR_68_I(s, p, o, m)
88
+ # define MSGPACK_PP_FOR_69(s, p, o, m) MSGPACK_PP_FOR_69_I(s, p, o, m)
89
+ # define MSGPACK_PP_FOR_70(s, p, o, m) MSGPACK_PP_FOR_70_I(s, p, o, m)
90
+ # define MSGPACK_PP_FOR_71(s, p, o, m) MSGPACK_PP_FOR_71_I(s, p, o, m)
91
+ # define MSGPACK_PP_FOR_72(s, p, o, m) MSGPACK_PP_FOR_72_I(s, p, o, m)
92
+ # define MSGPACK_PP_FOR_73(s, p, o, m) MSGPACK_PP_FOR_73_I(s, p, o, m)
93
+ # define MSGPACK_PP_FOR_74(s, p, o, m) MSGPACK_PP_FOR_74_I(s, p, o, m)
94
+ # define MSGPACK_PP_FOR_75(s, p, o, m) MSGPACK_PP_FOR_75_I(s, p, o, m)
95
+ # define MSGPACK_PP_FOR_76(s, p, o, m) MSGPACK_PP_FOR_76_I(s, p, o, m)
96
+ # define MSGPACK_PP_FOR_77(s, p, o, m) MSGPACK_PP_FOR_77_I(s, p, o, m)
97
+ # define MSGPACK_PP_FOR_78(s, p, o, m) MSGPACK_PP_FOR_78_I(s, p, o, m)
98
+ # define MSGPACK_PP_FOR_79(s, p, o, m) MSGPACK_PP_FOR_79_I(s, p, o, m)
99
+ # define MSGPACK_PP_FOR_80(s, p, o, m) MSGPACK_PP_FOR_80_I(s, p, o, m)
100
+ # define MSGPACK_PP_FOR_81(s, p, o, m) MSGPACK_PP_FOR_81_I(s, p, o, m)
101
+ # define MSGPACK_PP_FOR_82(s, p, o, m) MSGPACK_PP_FOR_82_I(s, p, o, m)
102
+ # define MSGPACK_PP_FOR_83(s, p, o, m) MSGPACK_PP_FOR_83_I(s, p, o, m)
103
+ # define MSGPACK_PP_FOR_84(s, p, o, m) MSGPACK_PP_FOR_84_I(s, p, o, m)
104
+ # define MSGPACK_PP_FOR_85(s, p, o, m) MSGPACK_PP_FOR_85_I(s, p, o, m)
105
+ # define MSGPACK_PP_FOR_86(s, p, o, m) MSGPACK_PP_FOR_86_I(s, p, o, m)
106
+ # define MSGPACK_PP_FOR_87(s, p, o, m) MSGPACK_PP_FOR_87_I(s, p, o, m)
107
+ # define MSGPACK_PP_FOR_88(s, p, o, m) MSGPACK_PP_FOR_88_I(s, p, o, m)
108
+ # define MSGPACK_PP_FOR_89(s, p, o, m) MSGPACK_PP_FOR_89_I(s, p, o, m)
109
+ # define MSGPACK_PP_FOR_90(s, p, o, m) MSGPACK_PP_FOR_90_I(s, p, o, m)
110
+ # define MSGPACK_PP_FOR_91(s, p, o, m) MSGPACK_PP_FOR_91_I(s, p, o, m)
111
+ # define MSGPACK_PP_FOR_92(s, p, o, m) MSGPACK_PP_FOR_92_I(s, p, o, m)
112
+ # define MSGPACK_PP_FOR_93(s, p, o, m) MSGPACK_PP_FOR_93_I(s, p, o, m)
113
+ # define MSGPACK_PP_FOR_94(s, p, o, m) MSGPACK_PP_FOR_94_I(s, p, o, m)
114
+ # define MSGPACK_PP_FOR_95(s, p, o, m) MSGPACK_PP_FOR_95_I(s, p, o, m)
115
+ # define MSGPACK_PP_FOR_96(s, p, o, m) MSGPACK_PP_FOR_96_I(s, p, o, m)
116
+ # define MSGPACK_PP_FOR_97(s, p, o, m) MSGPACK_PP_FOR_97_I(s, p, o, m)
117
+ # define MSGPACK_PP_FOR_98(s, p, o, m) MSGPACK_PP_FOR_98_I(s, p, o, m)
118
+ # define MSGPACK_PP_FOR_99(s, p, o, m) MSGPACK_PP_FOR_99_I(s, p, o, m)
119
+ # define MSGPACK_PP_FOR_100(s, p, o, m) MSGPACK_PP_FOR_100_I(s, p, o, m)
120
+ # define MSGPACK_PP_FOR_101(s, p, o, m) MSGPACK_PP_FOR_101_I(s, p, o, m)
121
+ # define MSGPACK_PP_FOR_102(s, p, o, m) MSGPACK_PP_FOR_102_I(s, p, o, m)
122
+ # define MSGPACK_PP_FOR_103(s, p, o, m) MSGPACK_PP_FOR_103_I(s, p, o, m)
123
+ # define MSGPACK_PP_FOR_104(s, p, o, m) MSGPACK_PP_FOR_104_I(s, p, o, m)
124
+ # define MSGPACK_PP_FOR_105(s, p, o, m) MSGPACK_PP_FOR_105_I(s, p, o, m)
125
+ # define MSGPACK_PP_FOR_106(s, p, o, m) MSGPACK_PP_FOR_106_I(s, p, o, m)
126
+ # define MSGPACK_PP_FOR_107(s, p, o, m) MSGPACK_PP_FOR_107_I(s, p, o, m)
127
+ # define MSGPACK_PP_FOR_108(s, p, o, m) MSGPACK_PP_FOR_108_I(s, p, o, m)
128
+ # define MSGPACK_PP_FOR_109(s, p, o, m) MSGPACK_PP_FOR_109_I(s, p, o, m)
129
+ # define MSGPACK_PP_FOR_110(s, p, o, m) MSGPACK_PP_FOR_110_I(s, p, o, m)
130
+ # define MSGPACK_PP_FOR_111(s, p, o, m) MSGPACK_PP_FOR_111_I(s, p, o, m)
131
+ # define MSGPACK_PP_FOR_112(s, p, o, m) MSGPACK_PP_FOR_112_I(s, p, o, m)
132
+ # define MSGPACK_PP_FOR_113(s, p, o, m) MSGPACK_PP_FOR_113_I(s, p, o, m)
133
+ # define MSGPACK_PP_FOR_114(s, p, o, m) MSGPACK_PP_FOR_114_I(s, p, o, m)
134
+ # define MSGPACK_PP_FOR_115(s, p, o, m) MSGPACK_PP_FOR_115_I(s, p, o, m)
135
+ # define MSGPACK_PP_FOR_116(s, p, o, m) MSGPACK_PP_FOR_116_I(s, p, o, m)
136
+ # define MSGPACK_PP_FOR_117(s, p, o, m) MSGPACK_PP_FOR_117_I(s, p, o, m)
137
+ # define MSGPACK_PP_FOR_118(s, p, o, m) MSGPACK_PP_FOR_118_I(s, p, o, m)
138
+ # define MSGPACK_PP_FOR_119(s, p, o, m) MSGPACK_PP_FOR_119_I(s, p, o, m)
139
+ # define MSGPACK_PP_FOR_120(s, p, o, m) MSGPACK_PP_FOR_120_I(s, p, o, m)
140
+ # define MSGPACK_PP_FOR_121(s, p, o, m) MSGPACK_PP_FOR_121_I(s, p, o, m)
141
+ # define MSGPACK_PP_FOR_122(s, p, o, m) MSGPACK_PP_FOR_122_I(s, p, o, m)
142
+ # define MSGPACK_PP_FOR_123(s, p, o, m) MSGPACK_PP_FOR_123_I(s, p, o, m)
143
+ # define MSGPACK_PP_FOR_124(s, p, o, m) MSGPACK_PP_FOR_124_I(s, p, o, m)
144
+ # define MSGPACK_PP_FOR_125(s, p, o, m) MSGPACK_PP_FOR_125_I(s, p, o, m)
145
+ # define MSGPACK_PP_FOR_126(s, p, o, m) MSGPACK_PP_FOR_126_I(s, p, o, m)
146
+ # define MSGPACK_PP_FOR_127(s, p, o, m) MSGPACK_PP_FOR_127_I(s, p, o, m)
147
+ # define MSGPACK_PP_FOR_128(s, p, o, m) MSGPACK_PP_FOR_128_I(s, p, o, m)
148
+ # define MSGPACK_PP_FOR_129(s, p, o, m) MSGPACK_PP_FOR_129_I(s, p, o, m)
149
+ # define MSGPACK_PP_FOR_130(s, p, o, m) MSGPACK_PP_FOR_130_I(s, p, o, m)
150
+ # define MSGPACK_PP_FOR_131(s, p, o, m) MSGPACK_PP_FOR_131_I(s, p, o, m)
151
+ # define MSGPACK_PP_FOR_132(s, p, o, m) MSGPACK_PP_FOR_132_I(s, p, o, m)
152
+ # define MSGPACK_PP_FOR_133(s, p, o, m) MSGPACK_PP_FOR_133_I(s, p, o, m)
153
+ # define MSGPACK_PP_FOR_134(s, p, o, m) MSGPACK_PP_FOR_134_I(s, p, o, m)
154
+ # define MSGPACK_PP_FOR_135(s, p, o, m) MSGPACK_PP_FOR_135_I(s, p, o, m)
155
+ # define MSGPACK_PP_FOR_136(s, p, o, m) MSGPACK_PP_FOR_136_I(s, p, o, m)
156
+ # define MSGPACK_PP_FOR_137(s, p, o, m) MSGPACK_PP_FOR_137_I(s, p, o, m)
157
+ # define MSGPACK_PP_FOR_138(s, p, o, m) MSGPACK_PP_FOR_138_I(s, p, o, m)
158
+ # define MSGPACK_PP_FOR_139(s, p, o, m) MSGPACK_PP_FOR_139_I(s, p, o, m)
159
+ # define MSGPACK_PP_FOR_140(s, p, o, m) MSGPACK_PP_FOR_140_I(s, p, o, m)
160
+ # define MSGPACK_PP_FOR_141(s, p, o, m) MSGPACK_PP_FOR_141_I(s, p, o, m)
161
+ # define MSGPACK_PP_FOR_142(s, p, o, m) MSGPACK_PP_FOR_142_I(s, p, o, m)
162
+ # define MSGPACK_PP_FOR_143(s, p, o, m) MSGPACK_PP_FOR_143_I(s, p, o, m)
163
+ # define MSGPACK_PP_FOR_144(s, p, o, m) MSGPACK_PP_FOR_144_I(s, p, o, m)
164
+ # define MSGPACK_PP_FOR_145(s, p, o, m) MSGPACK_PP_FOR_145_I(s, p, o, m)
165
+ # define MSGPACK_PP_FOR_146(s, p, o, m) MSGPACK_PP_FOR_146_I(s, p, o, m)
166
+ # define MSGPACK_PP_FOR_147(s, p, o, m) MSGPACK_PP_FOR_147_I(s, p, o, m)
167
+ # define MSGPACK_PP_FOR_148(s, p, o, m) MSGPACK_PP_FOR_148_I(s, p, o, m)
168
+ # define MSGPACK_PP_FOR_149(s, p, o, m) MSGPACK_PP_FOR_149_I(s, p, o, m)
169
+ # define MSGPACK_PP_FOR_150(s, p, o, m) MSGPACK_PP_FOR_150_I(s, p, o, m)
170
+ # define MSGPACK_PP_FOR_151(s, p, o, m) MSGPACK_PP_FOR_151_I(s, p, o, m)
171
+ # define MSGPACK_PP_FOR_152(s, p, o, m) MSGPACK_PP_FOR_152_I(s, p, o, m)
172
+ # define MSGPACK_PP_FOR_153(s, p, o, m) MSGPACK_PP_FOR_153_I(s, p, o, m)
173
+ # define MSGPACK_PP_FOR_154(s, p, o, m) MSGPACK_PP_FOR_154_I(s, p, o, m)
174
+ # define MSGPACK_PP_FOR_155(s, p, o, m) MSGPACK_PP_FOR_155_I(s, p, o, m)
175
+ # define MSGPACK_PP_FOR_156(s, p, o, m) MSGPACK_PP_FOR_156_I(s, p, o, m)
176
+ # define MSGPACK_PP_FOR_157(s, p, o, m) MSGPACK_PP_FOR_157_I(s, p, o, m)
177
+ # define MSGPACK_PP_FOR_158(s, p, o, m) MSGPACK_PP_FOR_158_I(s, p, o, m)
178
+ # define MSGPACK_PP_FOR_159(s, p, o, m) MSGPACK_PP_FOR_159_I(s, p, o, m)
179
+ # define MSGPACK_PP_FOR_160(s, p, o, m) MSGPACK_PP_FOR_160_I(s, p, o, m)
180
+ # define MSGPACK_PP_FOR_161(s, p, o, m) MSGPACK_PP_FOR_161_I(s, p, o, m)
181
+ # define MSGPACK_PP_FOR_162(s, p, o, m) MSGPACK_PP_FOR_162_I(s, p, o, m)
182
+ # define MSGPACK_PP_FOR_163(s, p, o, m) MSGPACK_PP_FOR_163_I(s, p, o, m)
183
+ # define MSGPACK_PP_FOR_164(s, p, o, m) MSGPACK_PP_FOR_164_I(s, p, o, m)
184
+ # define MSGPACK_PP_FOR_165(s, p, o, m) MSGPACK_PP_FOR_165_I(s, p, o, m)
185
+ # define MSGPACK_PP_FOR_166(s, p, o, m) MSGPACK_PP_FOR_166_I(s, p, o, m)
186
+ # define MSGPACK_PP_FOR_167(s, p, o, m) MSGPACK_PP_FOR_167_I(s, p, o, m)
187
+ # define MSGPACK_PP_FOR_168(s, p, o, m) MSGPACK_PP_FOR_168_I(s, p, o, m)
188
+ # define MSGPACK_PP_FOR_169(s, p, o, m) MSGPACK_PP_FOR_169_I(s, p, o, m)
189
+ # define MSGPACK_PP_FOR_170(s, p, o, m) MSGPACK_PP_FOR_170_I(s, p, o, m)
190
+ # define MSGPACK_PP_FOR_171(s, p, o, m) MSGPACK_PP_FOR_171_I(s, p, o, m)
191
+ # define MSGPACK_PP_FOR_172(s, p, o, m) MSGPACK_PP_FOR_172_I(s, p, o, m)
192
+ # define MSGPACK_PP_FOR_173(s, p, o, m) MSGPACK_PP_FOR_173_I(s, p, o, m)
193
+ # define MSGPACK_PP_FOR_174(s, p, o, m) MSGPACK_PP_FOR_174_I(s, p, o, m)
194
+ # define MSGPACK_PP_FOR_175(s, p, o, m) MSGPACK_PP_FOR_175_I(s, p, o, m)
195
+ # define MSGPACK_PP_FOR_176(s, p, o, m) MSGPACK_PP_FOR_176_I(s, p, o, m)
196
+ # define MSGPACK_PP_FOR_177(s, p, o, m) MSGPACK_PP_FOR_177_I(s, p, o, m)
197
+ # define MSGPACK_PP_FOR_178(s, p, o, m) MSGPACK_PP_FOR_178_I(s, p, o, m)
198
+ # define MSGPACK_PP_FOR_179(s, p, o, m) MSGPACK_PP_FOR_179_I(s, p, o, m)
199
+ # define MSGPACK_PP_FOR_180(s, p, o, m) MSGPACK_PP_FOR_180_I(s, p, o, m)
200
+ # define MSGPACK_PP_FOR_181(s, p, o, m) MSGPACK_PP_FOR_181_I(s, p, o, m)
201
+ # define MSGPACK_PP_FOR_182(s, p, o, m) MSGPACK_PP_FOR_182_I(s, p, o, m)
202
+ # define MSGPACK_PP_FOR_183(s, p, o, m) MSGPACK_PP_FOR_183_I(s, p, o, m)
203
+ # define MSGPACK_PP_FOR_184(s, p, o, m) MSGPACK_PP_FOR_184_I(s, p, o, m)
204
+ # define MSGPACK_PP_FOR_185(s, p, o, m) MSGPACK_PP_FOR_185_I(s, p, o, m)
205
+ # define MSGPACK_PP_FOR_186(s, p, o, m) MSGPACK_PP_FOR_186_I(s, p, o, m)
206
+ # define MSGPACK_PP_FOR_187(s, p, o, m) MSGPACK_PP_FOR_187_I(s, p, o, m)
207
+ # define MSGPACK_PP_FOR_188(s, p, o, m) MSGPACK_PP_FOR_188_I(s, p, o, m)
208
+ # define MSGPACK_PP_FOR_189(s, p, o, m) MSGPACK_PP_FOR_189_I(s, p, o, m)
209
+ # define MSGPACK_PP_FOR_190(s, p, o, m) MSGPACK_PP_FOR_190_I(s, p, o, m)
210
+ # define MSGPACK_PP_FOR_191(s, p, o, m) MSGPACK_PP_FOR_191_I(s, p, o, m)
211
+ # define MSGPACK_PP_FOR_192(s, p, o, m) MSGPACK_PP_FOR_192_I(s, p, o, m)
212
+ # define MSGPACK_PP_FOR_193(s, p, o, m) MSGPACK_PP_FOR_193_I(s, p, o, m)
213
+ # define MSGPACK_PP_FOR_194(s, p, o, m) MSGPACK_PP_FOR_194_I(s, p, o, m)
214
+ # define MSGPACK_PP_FOR_195(s, p, o, m) MSGPACK_PP_FOR_195_I(s, p, o, m)
215
+ # define MSGPACK_PP_FOR_196(s, p, o, m) MSGPACK_PP_FOR_196_I(s, p, o, m)
216
+ # define MSGPACK_PP_FOR_197(s, p, o, m) MSGPACK_PP_FOR_197_I(s, p, o, m)
217
+ # define MSGPACK_PP_FOR_198(s, p, o, m) MSGPACK_PP_FOR_198_I(s, p, o, m)
218
+ # define MSGPACK_PP_FOR_199(s, p, o, m) MSGPACK_PP_FOR_199_I(s, p, o, m)
219
+ # define MSGPACK_PP_FOR_200(s, p, o, m) MSGPACK_PP_FOR_200_I(s, p, o, m)
220
+ # define MSGPACK_PP_FOR_201(s, p, o, m) MSGPACK_PP_FOR_201_I(s, p, o, m)
221
+ # define MSGPACK_PP_FOR_202(s, p, o, m) MSGPACK_PP_FOR_202_I(s, p, o, m)
222
+ # define MSGPACK_PP_FOR_203(s, p, o, m) MSGPACK_PP_FOR_203_I(s, p, o, m)
223
+ # define MSGPACK_PP_FOR_204(s, p, o, m) MSGPACK_PP_FOR_204_I(s, p, o, m)
224
+ # define MSGPACK_PP_FOR_205(s, p, o, m) MSGPACK_PP_FOR_205_I(s, p, o, m)
225
+ # define MSGPACK_PP_FOR_206(s, p, o, m) MSGPACK_PP_FOR_206_I(s, p, o, m)
226
+ # define MSGPACK_PP_FOR_207(s, p, o, m) MSGPACK_PP_FOR_207_I(s, p, o, m)
227
+ # define MSGPACK_PP_FOR_208(s, p, o, m) MSGPACK_PP_FOR_208_I(s, p, o, m)
228
+ # define MSGPACK_PP_FOR_209(s, p, o, m) MSGPACK_PP_FOR_209_I(s, p, o, m)
229
+ # define MSGPACK_PP_FOR_210(s, p, o, m) MSGPACK_PP_FOR_210_I(s, p, o, m)
230
+ # define MSGPACK_PP_FOR_211(s, p, o, m) MSGPACK_PP_FOR_211_I(s, p, o, m)
231
+ # define MSGPACK_PP_FOR_212(s, p, o, m) MSGPACK_PP_FOR_212_I(s, p, o, m)
232
+ # define MSGPACK_PP_FOR_213(s, p, o, m) MSGPACK_PP_FOR_213_I(s, p, o, m)
233
+ # define MSGPACK_PP_FOR_214(s, p, o, m) MSGPACK_PP_FOR_214_I(s, p, o, m)
234
+ # define MSGPACK_PP_FOR_215(s, p, o, m) MSGPACK_PP_FOR_215_I(s, p, o, m)
235
+ # define MSGPACK_PP_FOR_216(s, p, o, m) MSGPACK_PP_FOR_216_I(s, p, o, m)
236
+ # define MSGPACK_PP_FOR_217(s, p, o, m) MSGPACK_PP_FOR_217_I(s, p, o, m)
237
+ # define MSGPACK_PP_FOR_218(s, p, o, m) MSGPACK_PP_FOR_218_I(s, p, o, m)
238
+ # define MSGPACK_PP_FOR_219(s, p, o, m) MSGPACK_PP_FOR_219_I(s, p, o, m)
239
+ # define MSGPACK_PP_FOR_220(s, p, o, m) MSGPACK_PP_FOR_220_I(s, p, o, m)
240
+ # define MSGPACK_PP_FOR_221(s, p, o, m) MSGPACK_PP_FOR_221_I(s, p, o, m)
241
+ # define MSGPACK_PP_FOR_222(s, p, o, m) MSGPACK_PP_FOR_222_I(s, p, o, m)
242
+ # define MSGPACK_PP_FOR_223(s, p, o, m) MSGPACK_PP_FOR_223_I(s, p, o, m)
243
+ # define MSGPACK_PP_FOR_224(s, p, o, m) MSGPACK_PP_FOR_224_I(s, p, o, m)
244
+ # define MSGPACK_PP_FOR_225(s, p, o, m) MSGPACK_PP_FOR_225_I(s, p, o, m)
245
+ # define MSGPACK_PP_FOR_226(s, p, o, m) MSGPACK_PP_FOR_226_I(s, p, o, m)
246
+ # define MSGPACK_PP_FOR_227(s, p, o, m) MSGPACK_PP_FOR_227_I(s, p, o, m)
247
+ # define MSGPACK_PP_FOR_228(s, p, o, m) MSGPACK_PP_FOR_228_I(s, p, o, m)
248
+ # define MSGPACK_PP_FOR_229(s, p, o, m) MSGPACK_PP_FOR_229_I(s, p, o, m)
249
+ # define MSGPACK_PP_FOR_230(s, p, o, m) MSGPACK_PP_FOR_230_I(s, p, o, m)
250
+ # define MSGPACK_PP_FOR_231(s, p, o, m) MSGPACK_PP_FOR_231_I(s, p, o, m)
251
+ # define MSGPACK_PP_FOR_232(s, p, o, m) MSGPACK_PP_FOR_232_I(s, p, o, m)
252
+ # define MSGPACK_PP_FOR_233(s, p, o, m) MSGPACK_PP_FOR_233_I(s, p, o, m)
253
+ # define MSGPACK_PP_FOR_234(s, p, o, m) MSGPACK_PP_FOR_234_I(s, p, o, m)
254
+ # define MSGPACK_PP_FOR_235(s, p, o, m) MSGPACK_PP_FOR_235_I(s, p, o, m)
255
+ # define MSGPACK_PP_FOR_236(s, p, o, m) MSGPACK_PP_FOR_236_I(s, p, o, m)
256
+ # define MSGPACK_PP_FOR_237(s, p, o, m) MSGPACK_PP_FOR_237_I(s, p, o, m)
257
+ # define MSGPACK_PP_FOR_238(s, p, o, m) MSGPACK_PP_FOR_238_I(s, p, o, m)
258
+ # define MSGPACK_PP_FOR_239(s, p, o, m) MSGPACK_PP_FOR_239_I(s, p, o, m)
259
+ # define MSGPACK_PP_FOR_240(s, p, o, m) MSGPACK_PP_FOR_240_I(s, p, o, m)
260
+ # define MSGPACK_PP_FOR_241(s, p, o, m) MSGPACK_PP_FOR_241_I(s, p, o, m)
261
+ # define MSGPACK_PP_FOR_242(s, p, o, m) MSGPACK_PP_FOR_242_I(s, p, o, m)
262
+ # define MSGPACK_PP_FOR_243(s, p, o, m) MSGPACK_PP_FOR_243_I(s, p, o, m)
263
+ # define MSGPACK_PP_FOR_244(s, p, o, m) MSGPACK_PP_FOR_244_I(s, p, o, m)
264
+ # define MSGPACK_PP_FOR_245(s, p, o, m) MSGPACK_PP_FOR_245_I(s, p, o, m)
265
+ # define MSGPACK_PP_FOR_246(s, p, o, m) MSGPACK_PP_FOR_246_I(s, p, o, m)
266
+ # define MSGPACK_PP_FOR_247(s, p, o, m) MSGPACK_PP_FOR_247_I(s, p, o, m)
267
+ # define MSGPACK_PP_FOR_248(s, p, o, m) MSGPACK_PP_FOR_248_I(s, p, o, m)
268
+ # define MSGPACK_PP_FOR_249(s, p, o, m) MSGPACK_PP_FOR_249_I(s, p, o, m)
269
+ # define MSGPACK_PP_FOR_250(s, p, o, m) MSGPACK_PP_FOR_250_I(s, p, o, m)
270
+ # define MSGPACK_PP_FOR_251(s, p, o, m) MSGPACK_PP_FOR_251_I(s, p, o, m)
271
+ # define MSGPACK_PP_FOR_252(s, p, o, m) MSGPACK_PP_FOR_252_I(s, p, o, m)
272
+ # define MSGPACK_PP_FOR_253(s, p, o, m) MSGPACK_PP_FOR_253_I(s, p, o, m)
273
+ # define MSGPACK_PP_FOR_254(s, p, o, m) MSGPACK_PP_FOR_254_I(s, p, o, m)
274
+ # define MSGPACK_PP_FOR_255(s, p, o, m) MSGPACK_PP_FOR_255_I(s, p, o, m)
275
+ # define MSGPACK_PP_FOR_256(s, p, o, m) MSGPACK_PP_FOR_256_I(s, p, o, m)
276
+ #
277
+ # define MSGPACK_PP_FOR_1_I(s, p, o, m) MSGPACK_PP_IF(p(2, s), m, MSGPACK_PP_TUPLE_EAT_2)(2, s) MSGPACK_PP_IF(p(2, s), MSGPACK_PP_FOR_2, MSGPACK_PP_TUPLE_EAT_4)(o(2, s), p, o, m)
278
+ # define MSGPACK_PP_FOR_2_I(s, p, o, m) MSGPACK_PP_IF(p(3, s), m, MSGPACK_PP_TUPLE_EAT_2)(3, s) MSGPACK_PP_IF(p(3, s), MSGPACK_PP_FOR_3, MSGPACK_PP_TUPLE_EAT_4)(o(3, s), p, o, m)
279
+ # define MSGPACK_PP_FOR_3_I(s, p, o, m) MSGPACK_PP_IF(p(4, s), m, MSGPACK_PP_TUPLE_EAT_2)(4, s) MSGPACK_PP_IF(p(4, s), MSGPACK_PP_FOR_4, MSGPACK_PP_TUPLE_EAT_4)(o(4, s), p, o, m)
280
+ # define MSGPACK_PP_FOR_4_I(s, p, o, m) MSGPACK_PP_IF(p(5, s), m, MSGPACK_PP_TUPLE_EAT_2)(5, s) MSGPACK_PP_IF(p(5, s), MSGPACK_PP_FOR_5, MSGPACK_PP_TUPLE_EAT_4)(o(5, s), p, o, m)
281
+ # define MSGPACK_PP_FOR_5_I(s, p, o, m) MSGPACK_PP_IF(p(6, s), m, MSGPACK_PP_TUPLE_EAT_2)(6, s) MSGPACK_PP_IF(p(6, s), MSGPACK_PP_FOR_6, MSGPACK_PP_TUPLE_EAT_4)(o(6, s), p, o, m)
282
+ # define MSGPACK_PP_FOR_6_I(s, p, o, m) MSGPACK_PP_IF(p(7, s), m, MSGPACK_PP_TUPLE_EAT_2)(7, s) MSGPACK_PP_IF(p(7, s), MSGPACK_PP_FOR_7, MSGPACK_PP_TUPLE_EAT_4)(o(7, s), p, o, m)
283
+ # define MSGPACK_PP_FOR_7_I(s, p, o, m) MSGPACK_PP_IF(p(8, s), m, MSGPACK_PP_TUPLE_EAT_2)(8, s) MSGPACK_PP_IF(p(8, s), MSGPACK_PP_FOR_8, MSGPACK_PP_TUPLE_EAT_4)(o(8, s), p, o, m)
284
+ # define MSGPACK_PP_FOR_8_I(s, p, o, m) MSGPACK_PP_IF(p(9, s), m, MSGPACK_PP_TUPLE_EAT_2)(9, s) MSGPACK_PP_IF(p(9, s), MSGPACK_PP_FOR_9, MSGPACK_PP_TUPLE_EAT_4)(o(9, s), p, o, m)
285
+ # define MSGPACK_PP_FOR_9_I(s, p, o, m) MSGPACK_PP_IF(p(10, s), m, MSGPACK_PP_TUPLE_EAT_2)(10, s) MSGPACK_PP_IF(p(10, s), MSGPACK_PP_FOR_10, MSGPACK_PP_TUPLE_EAT_4)(o(10, s), p, o, m)
286
+ # define MSGPACK_PP_FOR_10_I(s, p, o, m) MSGPACK_PP_IF(p(11, s), m, MSGPACK_PP_TUPLE_EAT_2)(11, s) MSGPACK_PP_IF(p(11, s), MSGPACK_PP_FOR_11, MSGPACK_PP_TUPLE_EAT_4)(o(11, s), p, o, m)
287
+ # define MSGPACK_PP_FOR_11_I(s, p, o, m) MSGPACK_PP_IF(p(12, s), m, MSGPACK_PP_TUPLE_EAT_2)(12, s) MSGPACK_PP_IF(p(12, s), MSGPACK_PP_FOR_12, MSGPACK_PP_TUPLE_EAT_4)(o(12, s), p, o, m)
288
+ # define MSGPACK_PP_FOR_12_I(s, p, o, m) MSGPACK_PP_IF(p(13, s), m, MSGPACK_PP_TUPLE_EAT_2)(13, s) MSGPACK_PP_IF(p(13, s), MSGPACK_PP_FOR_13, MSGPACK_PP_TUPLE_EAT_4)(o(13, s), p, o, m)
289
+ # define MSGPACK_PP_FOR_13_I(s, p, o, m) MSGPACK_PP_IF(p(14, s), m, MSGPACK_PP_TUPLE_EAT_2)(14, s) MSGPACK_PP_IF(p(14, s), MSGPACK_PP_FOR_14, MSGPACK_PP_TUPLE_EAT_4)(o(14, s), p, o, m)
290
+ # define MSGPACK_PP_FOR_14_I(s, p, o, m) MSGPACK_PP_IF(p(15, s), m, MSGPACK_PP_TUPLE_EAT_2)(15, s) MSGPACK_PP_IF(p(15, s), MSGPACK_PP_FOR_15, MSGPACK_PP_TUPLE_EAT_4)(o(15, s), p, o, m)
291
+ # define MSGPACK_PP_FOR_15_I(s, p, o, m) MSGPACK_PP_IF(p(16, s), m, MSGPACK_PP_TUPLE_EAT_2)(16, s) MSGPACK_PP_IF(p(16, s), MSGPACK_PP_FOR_16, MSGPACK_PP_TUPLE_EAT_4)(o(16, s), p, o, m)
292
+ # define MSGPACK_PP_FOR_16_I(s, p, o, m) MSGPACK_PP_IF(p(17, s), m, MSGPACK_PP_TUPLE_EAT_2)(17, s) MSGPACK_PP_IF(p(17, s), MSGPACK_PP_FOR_17, MSGPACK_PP_TUPLE_EAT_4)(o(17, s), p, o, m)
293
+ # define MSGPACK_PP_FOR_17_I(s, p, o, m) MSGPACK_PP_IF(p(18, s), m, MSGPACK_PP_TUPLE_EAT_2)(18, s) MSGPACK_PP_IF(p(18, s), MSGPACK_PP_FOR_18, MSGPACK_PP_TUPLE_EAT_4)(o(18, s), p, o, m)
294
+ # define MSGPACK_PP_FOR_18_I(s, p, o, m) MSGPACK_PP_IF(p(19, s), m, MSGPACK_PP_TUPLE_EAT_2)(19, s) MSGPACK_PP_IF(p(19, s), MSGPACK_PP_FOR_19, MSGPACK_PP_TUPLE_EAT_4)(o(19, s), p, o, m)
295
+ # define MSGPACK_PP_FOR_19_I(s, p, o, m) MSGPACK_PP_IF(p(20, s), m, MSGPACK_PP_TUPLE_EAT_2)(20, s) MSGPACK_PP_IF(p(20, s), MSGPACK_PP_FOR_20, MSGPACK_PP_TUPLE_EAT_4)(o(20, s), p, o, m)
296
+ # define MSGPACK_PP_FOR_20_I(s, p, o, m) MSGPACK_PP_IF(p(21, s), m, MSGPACK_PP_TUPLE_EAT_2)(21, s) MSGPACK_PP_IF(p(21, s), MSGPACK_PP_FOR_21, MSGPACK_PP_TUPLE_EAT_4)(o(21, s), p, o, m)
297
+ # define MSGPACK_PP_FOR_21_I(s, p, o, m) MSGPACK_PP_IF(p(22, s), m, MSGPACK_PP_TUPLE_EAT_2)(22, s) MSGPACK_PP_IF(p(22, s), MSGPACK_PP_FOR_22, MSGPACK_PP_TUPLE_EAT_4)(o(22, s), p, o, m)
298
+ # define MSGPACK_PP_FOR_22_I(s, p, o, m) MSGPACK_PP_IF(p(23, s), m, MSGPACK_PP_TUPLE_EAT_2)(23, s) MSGPACK_PP_IF(p(23, s), MSGPACK_PP_FOR_23, MSGPACK_PP_TUPLE_EAT_4)(o(23, s), p, o, m)
299
+ # define MSGPACK_PP_FOR_23_I(s, p, o, m) MSGPACK_PP_IF(p(24, s), m, MSGPACK_PP_TUPLE_EAT_2)(24, s) MSGPACK_PP_IF(p(24, s), MSGPACK_PP_FOR_24, MSGPACK_PP_TUPLE_EAT_4)(o(24, s), p, o, m)
300
+ # define MSGPACK_PP_FOR_24_I(s, p, o, m) MSGPACK_PP_IF(p(25, s), m, MSGPACK_PP_TUPLE_EAT_2)(25, s) MSGPACK_PP_IF(p(25, s), MSGPACK_PP_FOR_25, MSGPACK_PP_TUPLE_EAT_4)(o(25, s), p, o, m)
301
+ # define MSGPACK_PP_FOR_25_I(s, p, o, m) MSGPACK_PP_IF(p(26, s), m, MSGPACK_PP_TUPLE_EAT_2)(26, s) MSGPACK_PP_IF(p(26, s), MSGPACK_PP_FOR_26, MSGPACK_PP_TUPLE_EAT_4)(o(26, s), p, o, m)
302
+ # define MSGPACK_PP_FOR_26_I(s, p, o, m) MSGPACK_PP_IF(p(27, s), m, MSGPACK_PP_TUPLE_EAT_2)(27, s) MSGPACK_PP_IF(p(27, s), MSGPACK_PP_FOR_27, MSGPACK_PP_TUPLE_EAT_4)(o(27, s), p, o, m)
303
+ # define MSGPACK_PP_FOR_27_I(s, p, o, m) MSGPACK_PP_IF(p(28, s), m, MSGPACK_PP_TUPLE_EAT_2)(28, s) MSGPACK_PP_IF(p(28, s), MSGPACK_PP_FOR_28, MSGPACK_PP_TUPLE_EAT_4)(o(28, s), p, o, m)
304
+ # define MSGPACK_PP_FOR_28_I(s, p, o, m) MSGPACK_PP_IF(p(29, s), m, MSGPACK_PP_TUPLE_EAT_2)(29, s) MSGPACK_PP_IF(p(29, s), MSGPACK_PP_FOR_29, MSGPACK_PP_TUPLE_EAT_4)(o(29, s), p, o, m)
305
+ # define MSGPACK_PP_FOR_29_I(s, p, o, m) MSGPACK_PP_IF(p(30, s), m, MSGPACK_PP_TUPLE_EAT_2)(30, s) MSGPACK_PP_IF(p(30, s), MSGPACK_PP_FOR_30, MSGPACK_PP_TUPLE_EAT_4)(o(30, s), p, o, m)
306
+ # define MSGPACK_PP_FOR_30_I(s, p, o, m) MSGPACK_PP_IF(p(31, s), m, MSGPACK_PP_TUPLE_EAT_2)(31, s) MSGPACK_PP_IF(p(31, s), MSGPACK_PP_FOR_31, MSGPACK_PP_TUPLE_EAT_4)(o(31, s), p, o, m)
307
+ # define MSGPACK_PP_FOR_31_I(s, p, o, m) MSGPACK_PP_IF(p(32, s), m, MSGPACK_PP_TUPLE_EAT_2)(32, s) MSGPACK_PP_IF(p(32, s), MSGPACK_PP_FOR_32, MSGPACK_PP_TUPLE_EAT_4)(o(32, s), p, o, m)
308
+ # define MSGPACK_PP_FOR_32_I(s, p, o, m) MSGPACK_PP_IF(p(33, s), m, MSGPACK_PP_TUPLE_EAT_2)(33, s) MSGPACK_PP_IF(p(33, s), MSGPACK_PP_FOR_33, MSGPACK_PP_TUPLE_EAT_4)(o(33, s), p, o, m)
309
+ # define MSGPACK_PP_FOR_33_I(s, p, o, m) MSGPACK_PP_IF(p(34, s), m, MSGPACK_PP_TUPLE_EAT_2)(34, s) MSGPACK_PP_IF(p(34, s), MSGPACK_PP_FOR_34, MSGPACK_PP_TUPLE_EAT_4)(o(34, s), p, o, m)
310
+ # define MSGPACK_PP_FOR_34_I(s, p, o, m) MSGPACK_PP_IF(p(35, s), m, MSGPACK_PP_TUPLE_EAT_2)(35, s) MSGPACK_PP_IF(p(35, s), MSGPACK_PP_FOR_35, MSGPACK_PP_TUPLE_EAT_4)(o(35, s), p, o, m)
311
+ # define MSGPACK_PP_FOR_35_I(s, p, o, m) MSGPACK_PP_IF(p(36, s), m, MSGPACK_PP_TUPLE_EAT_2)(36, s) MSGPACK_PP_IF(p(36, s), MSGPACK_PP_FOR_36, MSGPACK_PP_TUPLE_EAT_4)(o(36, s), p, o, m)
312
+ # define MSGPACK_PP_FOR_36_I(s, p, o, m) MSGPACK_PP_IF(p(37, s), m, MSGPACK_PP_TUPLE_EAT_2)(37, s) MSGPACK_PP_IF(p(37, s), MSGPACK_PP_FOR_37, MSGPACK_PP_TUPLE_EAT_4)(o(37, s), p, o, m)
313
+ # define MSGPACK_PP_FOR_37_I(s, p, o, m) MSGPACK_PP_IF(p(38, s), m, MSGPACK_PP_TUPLE_EAT_2)(38, s) MSGPACK_PP_IF(p(38, s), MSGPACK_PP_FOR_38, MSGPACK_PP_TUPLE_EAT_4)(o(38, s), p, o, m)
314
+ # define MSGPACK_PP_FOR_38_I(s, p, o, m) MSGPACK_PP_IF(p(39, s), m, MSGPACK_PP_TUPLE_EAT_2)(39, s) MSGPACK_PP_IF(p(39, s), MSGPACK_PP_FOR_39, MSGPACK_PP_TUPLE_EAT_4)(o(39, s), p, o, m)
315
+ # define MSGPACK_PP_FOR_39_I(s, p, o, m) MSGPACK_PP_IF(p(40, s), m, MSGPACK_PP_TUPLE_EAT_2)(40, s) MSGPACK_PP_IF(p(40, s), MSGPACK_PP_FOR_40, MSGPACK_PP_TUPLE_EAT_4)(o(40, s), p, o, m)
316
+ # define MSGPACK_PP_FOR_40_I(s, p, o, m) MSGPACK_PP_IF(p(41, s), m, MSGPACK_PP_TUPLE_EAT_2)(41, s) MSGPACK_PP_IF(p(41, s), MSGPACK_PP_FOR_41, MSGPACK_PP_TUPLE_EAT_4)(o(41, s), p, o, m)
317
+ # define MSGPACK_PP_FOR_41_I(s, p, o, m) MSGPACK_PP_IF(p(42, s), m, MSGPACK_PP_TUPLE_EAT_2)(42, s) MSGPACK_PP_IF(p(42, s), MSGPACK_PP_FOR_42, MSGPACK_PP_TUPLE_EAT_4)(o(42, s), p, o, m)
318
+ # define MSGPACK_PP_FOR_42_I(s, p, o, m) MSGPACK_PP_IF(p(43, s), m, MSGPACK_PP_TUPLE_EAT_2)(43, s) MSGPACK_PP_IF(p(43, s), MSGPACK_PP_FOR_43, MSGPACK_PP_TUPLE_EAT_4)(o(43, s), p, o, m)
319
+ # define MSGPACK_PP_FOR_43_I(s, p, o, m) MSGPACK_PP_IF(p(44, s), m, MSGPACK_PP_TUPLE_EAT_2)(44, s) MSGPACK_PP_IF(p(44, s), MSGPACK_PP_FOR_44, MSGPACK_PP_TUPLE_EAT_4)(o(44, s), p, o, m)
320
+ # define MSGPACK_PP_FOR_44_I(s, p, o, m) MSGPACK_PP_IF(p(45, s), m, MSGPACK_PP_TUPLE_EAT_2)(45, s) MSGPACK_PP_IF(p(45, s), MSGPACK_PP_FOR_45, MSGPACK_PP_TUPLE_EAT_4)(o(45, s), p, o, m)
321
+ # define MSGPACK_PP_FOR_45_I(s, p, o, m) MSGPACK_PP_IF(p(46, s), m, MSGPACK_PP_TUPLE_EAT_2)(46, s) MSGPACK_PP_IF(p(46, s), MSGPACK_PP_FOR_46, MSGPACK_PP_TUPLE_EAT_4)(o(46, s), p, o, m)
322
+ # define MSGPACK_PP_FOR_46_I(s, p, o, m) MSGPACK_PP_IF(p(47, s), m, MSGPACK_PP_TUPLE_EAT_2)(47, s) MSGPACK_PP_IF(p(47, s), MSGPACK_PP_FOR_47, MSGPACK_PP_TUPLE_EAT_4)(o(47, s), p, o, m)
323
+ # define MSGPACK_PP_FOR_47_I(s, p, o, m) MSGPACK_PP_IF(p(48, s), m, MSGPACK_PP_TUPLE_EAT_2)(48, s) MSGPACK_PP_IF(p(48, s), MSGPACK_PP_FOR_48, MSGPACK_PP_TUPLE_EAT_4)(o(48, s), p, o, m)
324
+ # define MSGPACK_PP_FOR_48_I(s, p, o, m) MSGPACK_PP_IF(p(49, s), m, MSGPACK_PP_TUPLE_EAT_2)(49, s) MSGPACK_PP_IF(p(49, s), MSGPACK_PP_FOR_49, MSGPACK_PP_TUPLE_EAT_4)(o(49, s), p, o, m)
325
+ # define MSGPACK_PP_FOR_49_I(s, p, o, m) MSGPACK_PP_IF(p(50, s), m, MSGPACK_PP_TUPLE_EAT_2)(50, s) MSGPACK_PP_IF(p(50, s), MSGPACK_PP_FOR_50, MSGPACK_PP_TUPLE_EAT_4)(o(50, s), p, o, m)
326
+ # define MSGPACK_PP_FOR_50_I(s, p, o, m) MSGPACK_PP_IF(p(51, s), m, MSGPACK_PP_TUPLE_EAT_2)(51, s) MSGPACK_PP_IF(p(51, s), MSGPACK_PP_FOR_51, MSGPACK_PP_TUPLE_EAT_4)(o(51, s), p, o, m)
327
+ # define MSGPACK_PP_FOR_51_I(s, p, o, m) MSGPACK_PP_IF(p(52, s), m, MSGPACK_PP_TUPLE_EAT_2)(52, s) MSGPACK_PP_IF(p(52, s), MSGPACK_PP_FOR_52, MSGPACK_PP_TUPLE_EAT_4)(o(52, s), p, o, m)
328
+ # define MSGPACK_PP_FOR_52_I(s, p, o, m) MSGPACK_PP_IF(p(53, s), m, MSGPACK_PP_TUPLE_EAT_2)(53, s) MSGPACK_PP_IF(p(53, s), MSGPACK_PP_FOR_53, MSGPACK_PP_TUPLE_EAT_4)(o(53, s), p, o, m)
329
+ # define MSGPACK_PP_FOR_53_I(s, p, o, m) MSGPACK_PP_IF(p(54, s), m, MSGPACK_PP_TUPLE_EAT_2)(54, s) MSGPACK_PP_IF(p(54, s), MSGPACK_PP_FOR_54, MSGPACK_PP_TUPLE_EAT_4)(o(54, s), p, o, m)
330
+ # define MSGPACK_PP_FOR_54_I(s, p, o, m) MSGPACK_PP_IF(p(55, s), m, MSGPACK_PP_TUPLE_EAT_2)(55, s) MSGPACK_PP_IF(p(55, s), MSGPACK_PP_FOR_55, MSGPACK_PP_TUPLE_EAT_4)(o(55, s), p, o, m)
331
+ # define MSGPACK_PP_FOR_55_I(s, p, o, m) MSGPACK_PP_IF(p(56, s), m, MSGPACK_PP_TUPLE_EAT_2)(56, s) MSGPACK_PP_IF(p(56, s), MSGPACK_PP_FOR_56, MSGPACK_PP_TUPLE_EAT_4)(o(56, s), p, o, m)
332
+ # define MSGPACK_PP_FOR_56_I(s, p, o, m) MSGPACK_PP_IF(p(57, s), m, MSGPACK_PP_TUPLE_EAT_2)(57, s) MSGPACK_PP_IF(p(57, s), MSGPACK_PP_FOR_57, MSGPACK_PP_TUPLE_EAT_4)(o(57, s), p, o, m)
333
+ # define MSGPACK_PP_FOR_57_I(s, p, o, m) MSGPACK_PP_IF(p(58, s), m, MSGPACK_PP_TUPLE_EAT_2)(58, s) MSGPACK_PP_IF(p(58, s), MSGPACK_PP_FOR_58, MSGPACK_PP_TUPLE_EAT_4)(o(58, s), p, o, m)
334
+ # define MSGPACK_PP_FOR_58_I(s, p, o, m) MSGPACK_PP_IF(p(59, s), m, MSGPACK_PP_TUPLE_EAT_2)(59, s) MSGPACK_PP_IF(p(59, s), MSGPACK_PP_FOR_59, MSGPACK_PP_TUPLE_EAT_4)(o(59, s), p, o, m)
335
+ # define MSGPACK_PP_FOR_59_I(s, p, o, m) MSGPACK_PP_IF(p(60, s), m, MSGPACK_PP_TUPLE_EAT_2)(60, s) MSGPACK_PP_IF(p(60, s), MSGPACK_PP_FOR_60, MSGPACK_PP_TUPLE_EAT_4)(o(60, s), p, o, m)
336
+ # define MSGPACK_PP_FOR_60_I(s, p, o, m) MSGPACK_PP_IF(p(61, s), m, MSGPACK_PP_TUPLE_EAT_2)(61, s) MSGPACK_PP_IF(p(61, s), MSGPACK_PP_FOR_61, MSGPACK_PP_TUPLE_EAT_4)(o(61, s), p, o, m)
337
+ # define MSGPACK_PP_FOR_61_I(s, p, o, m) MSGPACK_PP_IF(p(62, s), m, MSGPACK_PP_TUPLE_EAT_2)(62, s) MSGPACK_PP_IF(p(62, s), MSGPACK_PP_FOR_62, MSGPACK_PP_TUPLE_EAT_4)(o(62, s), p, o, m)
338
+ # define MSGPACK_PP_FOR_62_I(s, p, o, m) MSGPACK_PP_IF(p(63, s), m, MSGPACK_PP_TUPLE_EAT_2)(63, s) MSGPACK_PP_IF(p(63, s), MSGPACK_PP_FOR_63, MSGPACK_PP_TUPLE_EAT_4)(o(63, s), p, o, m)
339
+ # define MSGPACK_PP_FOR_63_I(s, p, o, m) MSGPACK_PP_IF(p(64, s), m, MSGPACK_PP_TUPLE_EAT_2)(64, s) MSGPACK_PP_IF(p(64, s), MSGPACK_PP_FOR_64, MSGPACK_PP_TUPLE_EAT_4)(o(64, s), p, o, m)
340
+ # define MSGPACK_PP_FOR_64_I(s, p, o, m) MSGPACK_PP_IF(p(65, s), m, MSGPACK_PP_TUPLE_EAT_2)(65, s) MSGPACK_PP_IF(p(65, s), MSGPACK_PP_FOR_65, MSGPACK_PP_TUPLE_EAT_4)(o(65, s), p, o, m)
341
+ # define MSGPACK_PP_FOR_65_I(s, p, o, m) MSGPACK_PP_IF(p(66, s), m, MSGPACK_PP_TUPLE_EAT_2)(66, s) MSGPACK_PP_IF(p(66, s), MSGPACK_PP_FOR_66, MSGPACK_PP_TUPLE_EAT_4)(o(66, s), p, o, m)
342
+ # define MSGPACK_PP_FOR_66_I(s, p, o, m) MSGPACK_PP_IF(p(67, s), m, MSGPACK_PP_TUPLE_EAT_2)(67, s) MSGPACK_PP_IF(p(67, s), MSGPACK_PP_FOR_67, MSGPACK_PP_TUPLE_EAT_4)(o(67, s), p, o, m)
343
+ # define MSGPACK_PP_FOR_67_I(s, p, o, m) MSGPACK_PP_IF(p(68, s), m, MSGPACK_PP_TUPLE_EAT_2)(68, s) MSGPACK_PP_IF(p(68, s), MSGPACK_PP_FOR_68, MSGPACK_PP_TUPLE_EAT_4)(o(68, s), p, o, m)
344
+ # define MSGPACK_PP_FOR_68_I(s, p, o, m) MSGPACK_PP_IF(p(69, s), m, MSGPACK_PP_TUPLE_EAT_2)(69, s) MSGPACK_PP_IF(p(69, s), MSGPACK_PP_FOR_69, MSGPACK_PP_TUPLE_EAT_4)(o(69, s), p, o, m)
345
+ # define MSGPACK_PP_FOR_69_I(s, p, o, m) MSGPACK_PP_IF(p(70, s), m, MSGPACK_PP_TUPLE_EAT_2)(70, s) MSGPACK_PP_IF(p(70, s), MSGPACK_PP_FOR_70, MSGPACK_PP_TUPLE_EAT_4)(o(70, s), p, o, m)
346
+ # define MSGPACK_PP_FOR_70_I(s, p, o, m) MSGPACK_PP_IF(p(71, s), m, MSGPACK_PP_TUPLE_EAT_2)(71, s) MSGPACK_PP_IF(p(71, s), MSGPACK_PP_FOR_71, MSGPACK_PP_TUPLE_EAT_4)(o(71, s), p, o, m)
347
+ # define MSGPACK_PP_FOR_71_I(s, p, o, m) MSGPACK_PP_IF(p(72, s), m, MSGPACK_PP_TUPLE_EAT_2)(72, s) MSGPACK_PP_IF(p(72, s), MSGPACK_PP_FOR_72, MSGPACK_PP_TUPLE_EAT_4)(o(72, s), p, o, m)
348
+ # define MSGPACK_PP_FOR_72_I(s, p, o, m) MSGPACK_PP_IF(p(73, s), m, MSGPACK_PP_TUPLE_EAT_2)(73, s) MSGPACK_PP_IF(p(73, s), MSGPACK_PP_FOR_73, MSGPACK_PP_TUPLE_EAT_4)(o(73, s), p, o, m)
349
+ # define MSGPACK_PP_FOR_73_I(s, p, o, m) MSGPACK_PP_IF(p(74, s), m, MSGPACK_PP_TUPLE_EAT_2)(74, s) MSGPACK_PP_IF(p(74, s), MSGPACK_PP_FOR_74, MSGPACK_PP_TUPLE_EAT_4)(o(74, s), p, o, m)
350
+ # define MSGPACK_PP_FOR_74_I(s, p, o, m) MSGPACK_PP_IF(p(75, s), m, MSGPACK_PP_TUPLE_EAT_2)(75, s) MSGPACK_PP_IF(p(75, s), MSGPACK_PP_FOR_75, MSGPACK_PP_TUPLE_EAT_4)(o(75, s), p, o, m)
351
+ # define MSGPACK_PP_FOR_75_I(s, p, o, m) MSGPACK_PP_IF(p(76, s), m, MSGPACK_PP_TUPLE_EAT_2)(76, s) MSGPACK_PP_IF(p(76, s), MSGPACK_PP_FOR_76, MSGPACK_PP_TUPLE_EAT_4)(o(76, s), p, o, m)
352
+ # define MSGPACK_PP_FOR_76_I(s, p, o, m) MSGPACK_PP_IF(p(77, s), m, MSGPACK_PP_TUPLE_EAT_2)(77, s) MSGPACK_PP_IF(p(77, s), MSGPACK_PP_FOR_77, MSGPACK_PP_TUPLE_EAT_4)(o(77, s), p, o, m)
353
+ # define MSGPACK_PP_FOR_77_I(s, p, o, m) MSGPACK_PP_IF(p(78, s), m, MSGPACK_PP_TUPLE_EAT_2)(78, s) MSGPACK_PP_IF(p(78, s), MSGPACK_PP_FOR_78, MSGPACK_PP_TUPLE_EAT_4)(o(78, s), p, o, m)
354
+ # define MSGPACK_PP_FOR_78_I(s, p, o, m) MSGPACK_PP_IF(p(79, s), m, MSGPACK_PP_TUPLE_EAT_2)(79, s) MSGPACK_PP_IF(p(79, s), MSGPACK_PP_FOR_79, MSGPACK_PP_TUPLE_EAT_4)(o(79, s), p, o, m)
355
+ # define MSGPACK_PP_FOR_79_I(s, p, o, m) MSGPACK_PP_IF(p(80, s), m, MSGPACK_PP_TUPLE_EAT_2)(80, s) MSGPACK_PP_IF(p(80, s), MSGPACK_PP_FOR_80, MSGPACK_PP_TUPLE_EAT_4)(o(80, s), p, o, m)
356
+ # define MSGPACK_PP_FOR_80_I(s, p, o, m) MSGPACK_PP_IF(p(81, s), m, MSGPACK_PP_TUPLE_EAT_2)(81, s) MSGPACK_PP_IF(p(81, s), MSGPACK_PP_FOR_81, MSGPACK_PP_TUPLE_EAT_4)(o(81, s), p, o, m)
357
+ # define MSGPACK_PP_FOR_81_I(s, p, o, m) MSGPACK_PP_IF(p(82, s), m, MSGPACK_PP_TUPLE_EAT_2)(82, s) MSGPACK_PP_IF(p(82, s), MSGPACK_PP_FOR_82, MSGPACK_PP_TUPLE_EAT_4)(o(82, s), p, o, m)
358
+ # define MSGPACK_PP_FOR_82_I(s, p, o, m) MSGPACK_PP_IF(p(83, s), m, MSGPACK_PP_TUPLE_EAT_2)(83, s) MSGPACK_PP_IF(p(83, s), MSGPACK_PP_FOR_83, MSGPACK_PP_TUPLE_EAT_4)(o(83, s), p, o, m)
359
+ # define MSGPACK_PP_FOR_83_I(s, p, o, m) MSGPACK_PP_IF(p(84, s), m, MSGPACK_PP_TUPLE_EAT_2)(84, s) MSGPACK_PP_IF(p(84, s), MSGPACK_PP_FOR_84, MSGPACK_PP_TUPLE_EAT_4)(o(84, s), p, o, m)
360
+ # define MSGPACK_PP_FOR_84_I(s, p, o, m) MSGPACK_PP_IF(p(85, s), m, MSGPACK_PP_TUPLE_EAT_2)(85, s) MSGPACK_PP_IF(p(85, s), MSGPACK_PP_FOR_85, MSGPACK_PP_TUPLE_EAT_4)(o(85, s), p, o, m)
361
+ # define MSGPACK_PP_FOR_85_I(s, p, o, m) MSGPACK_PP_IF(p(86, s), m, MSGPACK_PP_TUPLE_EAT_2)(86, s) MSGPACK_PP_IF(p(86, s), MSGPACK_PP_FOR_86, MSGPACK_PP_TUPLE_EAT_4)(o(86, s), p, o, m)
362
+ # define MSGPACK_PP_FOR_86_I(s, p, o, m) MSGPACK_PP_IF(p(87, s), m, MSGPACK_PP_TUPLE_EAT_2)(87, s) MSGPACK_PP_IF(p(87, s), MSGPACK_PP_FOR_87, MSGPACK_PP_TUPLE_EAT_4)(o(87, s), p, o, m)
363
+ # define MSGPACK_PP_FOR_87_I(s, p, o, m) MSGPACK_PP_IF(p(88, s), m, MSGPACK_PP_TUPLE_EAT_2)(88, s) MSGPACK_PP_IF(p(88, s), MSGPACK_PP_FOR_88, MSGPACK_PP_TUPLE_EAT_4)(o(88, s), p, o, m)
364
+ # define MSGPACK_PP_FOR_88_I(s, p, o, m) MSGPACK_PP_IF(p(89, s), m, MSGPACK_PP_TUPLE_EAT_2)(89, s) MSGPACK_PP_IF(p(89, s), MSGPACK_PP_FOR_89, MSGPACK_PP_TUPLE_EAT_4)(o(89, s), p, o, m)
365
+ # define MSGPACK_PP_FOR_89_I(s, p, o, m) MSGPACK_PP_IF(p(90, s), m, MSGPACK_PP_TUPLE_EAT_2)(90, s) MSGPACK_PP_IF(p(90, s), MSGPACK_PP_FOR_90, MSGPACK_PP_TUPLE_EAT_4)(o(90, s), p, o, m)
366
+ # define MSGPACK_PP_FOR_90_I(s, p, o, m) MSGPACK_PP_IF(p(91, s), m, MSGPACK_PP_TUPLE_EAT_2)(91, s) MSGPACK_PP_IF(p(91, s), MSGPACK_PP_FOR_91, MSGPACK_PP_TUPLE_EAT_4)(o(91, s), p, o, m)
367
+ # define MSGPACK_PP_FOR_91_I(s, p, o, m) MSGPACK_PP_IF(p(92, s), m, MSGPACK_PP_TUPLE_EAT_2)(92, s) MSGPACK_PP_IF(p(92, s), MSGPACK_PP_FOR_92, MSGPACK_PP_TUPLE_EAT_4)(o(92, s), p, o, m)
368
+ # define MSGPACK_PP_FOR_92_I(s, p, o, m) MSGPACK_PP_IF(p(93, s), m, MSGPACK_PP_TUPLE_EAT_2)(93, s) MSGPACK_PP_IF(p(93, s), MSGPACK_PP_FOR_93, MSGPACK_PP_TUPLE_EAT_4)(o(93, s), p, o, m)
369
+ # define MSGPACK_PP_FOR_93_I(s, p, o, m) MSGPACK_PP_IF(p(94, s), m, MSGPACK_PP_TUPLE_EAT_2)(94, s) MSGPACK_PP_IF(p(94, s), MSGPACK_PP_FOR_94, MSGPACK_PP_TUPLE_EAT_4)(o(94, s), p, o, m)
370
+ # define MSGPACK_PP_FOR_94_I(s, p, o, m) MSGPACK_PP_IF(p(95, s), m, MSGPACK_PP_TUPLE_EAT_2)(95, s) MSGPACK_PP_IF(p(95, s), MSGPACK_PP_FOR_95, MSGPACK_PP_TUPLE_EAT_4)(o(95, s), p, o, m)
371
+ # define MSGPACK_PP_FOR_95_I(s, p, o, m) MSGPACK_PP_IF(p(96, s), m, MSGPACK_PP_TUPLE_EAT_2)(96, s) MSGPACK_PP_IF(p(96, s), MSGPACK_PP_FOR_96, MSGPACK_PP_TUPLE_EAT_4)(o(96, s), p, o, m)
372
+ # define MSGPACK_PP_FOR_96_I(s, p, o, m) MSGPACK_PP_IF(p(97, s), m, MSGPACK_PP_TUPLE_EAT_2)(97, s) MSGPACK_PP_IF(p(97, s), MSGPACK_PP_FOR_97, MSGPACK_PP_TUPLE_EAT_4)(o(97, s), p, o, m)
373
+ # define MSGPACK_PP_FOR_97_I(s, p, o, m) MSGPACK_PP_IF(p(98, s), m, MSGPACK_PP_TUPLE_EAT_2)(98, s) MSGPACK_PP_IF(p(98, s), MSGPACK_PP_FOR_98, MSGPACK_PP_TUPLE_EAT_4)(o(98, s), p, o, m)
374
+ # define MSGPACK_PP_FOR_98_I(s, p, o, m) MSGPACK_PP_IF(p(99, s), m, MSGPACK_PP_TUPLE_EAT_2)(99, s) MSGPACK_PP_IF(p(99, s), MSGPACK_PP_FOR_99, MSGPACK_PP_TUPLE_EAT_4)(o(99, s), p, o, m)
375
+ # define MSGPACK_PP_FOR_99_I(s, p, o, m) MSGPACK_PP_IF(p(100, s), m, MSGPACK_PP_TUPLE_EAT_2)(100, s) MSGPACK_PP_IF(p(100, s), MSGPACK_PP_FOR_100, MSGPACK_PP_TUPLE_EAT_4)(o(100, s), p, o, m)
376
+ # define MSGPACK_PP_FOR_100_I(s, p, o, m) MSGPACK_PP_IF(p(101, s), m, MSGPACK_PP_TUPLE_EAT_2)(101, s) MSGPACK_PP_IF(p(101, s), MSGPACK_PP_FOR_101, MSGPACK_PP_TUPLE_EAT_4)(o(101, s), p, o, m)
377
+ # define MSGPACK_PP_FOR_101_I(s, p, o, m) MSGPACK_PP_IF(p(102, s), m, MSGPACK_PP_TUPLE_EAT_2)(102, s) MSGPACK_PP_IF(p(102, s), MSGPACK_PP_FOR_102, MSGPACK_PP_TUPLE_EAT_4)(o(102, s), p, o, m)
378
+ # define MSGPACK_PP_FOR_102_I(s, p, o, m) MSGPACK_PP_IF(p(103, s), m, MSGPACK_PP_TUPLE_EAT_2)(103, s) MSGPACK_PP_IF(p(103, s), MSGPACK_PP_FOR_103, MSGPACK_PP_TUPLE_EAT_4)(o(103, s), p, o, m)
379
+ # define MSGPACK_PP_FOR_103_I(s, p, o, m) MSGPACK_PP_IF(p(104, s), m, MSGPACK_PP_TUPLE_EAT_2)(104, s) MSGPACK_PP_IF(p(104, s), MSGPACK_PP_FOR_104, MSGPACK_PP_TUPLE_EAT_4)(o(104, s), p, o, m)
380
+ # define MSGPACK_PP_FOR_104_I(s, p, o, m) MSGPACK_PP_IF(p(105, s), m, MSGPACK_PP_TUPLE_EAT_2)(105, s) MSGPACK_PP_IF(p(105, s), MSGPACK_PP_FOR_105, MSGPACK_PP_TUPLE_EAT_4)(o(105, s), p, o, m)
381
+ # define MSGPACK_PP_FOR_105_I(s, p, o, m) MSGPACK_PP_IF(p(106, s), m, MSGPACK_PP_TUPLE_EAT_2)(106, s) MSGPACK_PP_IF(p(106, s), MSGPACK_PP_FOR_106, MSGPACK_PP_TUPLE_EAT_4)(o(106, s), p, o, m)
382
+ # define MSGPACK_PP_FOR_106_I(s, p, o, m) MSGPACK_PP_IF(p(107, s), m, MSGPACK_PP_TUPLE_EAT_2)(107, s) MSGPACK_PP_IF(p(107, s), MSGPACK_PP_FOR_107, MSGPACK_PP_TUPLE_EAT_4)(o(107, s), p, o, m)
383
+ # define MSGPACK_PP_FOR_107_I(s, p, o, m) MSGPACK_PP_IF(p(108, s), m, MSGPACK_PP_TUPLE_EAT_2)(108, s) MSGPACK_PP_IF(p(108, s), MSGPACK_PP_FOR_108, MSGPACK_PP_TUPLE_EAT_4)(o(108, s), p, o, m)
384
+ # define MSGPACK_PP_FOR_108_I(s, p, o, m) MSGPACK_PP_IF(p(109, s), m, MSGPACK_PP_TUPLE_EAT_2)(109, s) MSGPACK_PP_IF(p(109, s), MSGPACK_PP_FOR_109, MSGPACK_PP_TUPLE_EAT_4)(o(109, s), p, o, m)
385
+ # define MSGPACK_PP_FOR_109_I(s, p, o, m) MSGPACK_PP_IF(p(110, s), m, MSGPACK_PP_TUPLE_EAT_2)(110, s) MSGPACK_PP_IF(p(110, s), MSGPACK_PP_FOR_110, MSGPACK_PP_TUPLE_EAT_4)(o(110, s), p, o, m)
386
+ # define MSGPACK_PP_FOR_110_I(s, p, o, m) MSGPACK_PP_IF(p(111, s), m, MSGPACK_PP_TUPLE_EAT_2)(111, s) MSGPACK_PP_IF(p(111, s), MSGPACK_PP_FOR_111, MSGPACK_PP_TUPLE_EAT_4)(o(111, s), p, o, m)
387
+ # define MSGPACK_PP_FOR_111_I(s, p, o, m) MSGPACK_PP_IF(p(112, s), m, MSGPACK_PP_TUPLE_EAT_2)(112, s) MSGPACK_PP_IF(p(112, s), MSGPACK_PP_FOR_112, MSGPACK_PP_TUPLE_EAT_4)(o(112, s), p, o, m)
388
+ # define MSGPACK_PP_FOR_112_I(s, p, o, m) MSGPACK_PP_IF(p(113, s), m, MSGPACK_PP_TUPLE_EAT_2)(113, s) MSGPACK_PP_IF(p(113, s), MSGPACK_PP_FOR_113, MSGPACK_PP_TUPLE_EAT_4)(o(113, s), p, o, m)
389
+ # define MSGPACK_PP_FOR_113_I(s, p, o, m) MSGPACK_PP_IF(p(114, s), m, MSGPACK_PP_TUPLE_EAT_2)(114, s) MSGPACK_PP_IF(p(114, s), MSGPACK_PP_FOR_114, MSGPACK_PP_TUPLE_EAT_4)(o(114, s), p, o, m)
390
+ # define MSGPACK_PP_FOR_114_I(s, p, o, m) MSGPACK_PP_IF(p(115, s), m, MSGPACK_PP_TUPLE_EAT_2)(115, s) MSGPACK_PP_IF(p(115, s), MSGPACK_PP_FOR_115, MSGPACK_PP_TUPLE_EAT_4)(o(115, s), p, o, m)
391
+ # define MSGPACK_PP_FOR_115_I(s, p, o, m) MSGPACK_PP_IF(p(116, s), m, MSGPACK_PP_TUPLE_EAT_2)(116, s) MSGPACK_PP_IF(p(116, s), MSGPACK_PP_FOR_116, MSGPACK_PP_TUPLE_EAT_4)(o(116, s), p, o, m)
392
+ # define MSGPACK_PP_FOR_116_I(s, p, o, m) MSGPACK_PP_IF(p(117, s), m, MSGPACK_PP_TUPLE_EAT_2)(117, s) MSGPACK_PP_IF(p(117, s), MSGPACK_PP_FOR_117, MSGPACK_PP_TUPLE_EAT_4)(o(117, s), p, o, m)
393
+ # define MSGPACK_PP_FOR_117_I(s, p, o, m) MSGPACK_PP_IF(p(118, s), m, MSGPACK_PP_TUPLE_EAT_2)(118, s) MSGPACK_PP_IF(p(118, s), MSGPACK_PP_FOR_118, MSGPACK_PP_TUPLE_EAT_4)(o(118, s), p, o, m)
394
+ # define MSGPACK_PP_FOR_118_I(s, p, o, m) MSGPACK_PP_IF(p(119, s), m, MSGPACK_PP_TUPLE_EAT_2)(119, s) MSGPACK_PP_IF(p(119, s), MSGPACK_PP_FOR_119, MSGPACK_PP_TUPLE_EAT_4)(o(119, s), p, o, m)
395
+ # define MSGPACK_PP_FOR_119_I(s, p, o, m) MSGPACK_PP_IF(p(120, s), m, MSGPACK_PP_TUPLE_EAT_2)(120, s) MSGPACK_PP_IF(p(120, s), MSGPACK_PP_FOR_120, MSGPACK_PP_TUPLE_EAT_4)(o(120, s), p, o, m)
396
+ # define MSGPACK_PP_FOR_120_I(s, p, o, m) MSGPACK_PP_IF(p(121, s), m, MSGPACK_PP_TUPLE_EAT_2)(121, s) MSGPACK_PP_IF(p(121, s), MSGPACK_PP_FOR_121, MSGPACK_PP_TUPLE_EAT_4)(o(121, s), p, o, m)
397
+ # define MSGPACK_PP_FOR_121_I(s, p, o, m) MSGPACK_PP_IF(p(122, s), m, MSGPACK_PP_TUPLE_EAT_2)(122, s) MSGPACK_PP_IF(p(122, s), MSGPACK_PP_FOR_122, MSGPACK_PP_TUPLE_EAT_4)(o(122, s), p, o, m)
398
+ # define MSGPACK_PP_FOR_122_I(s, p, o, m) MSGPACK_PP_IF(p(123, s), m, MSGPACK_PP_TUPLE_EAT_2)(123, s) MSGPACK_PP_IF(p(123, s), MSGPACK_PP_FOR_123, MSGPACK_PP_TUPLE_EAT_4)(o(123, s), p, o, m)
399
+ # define MSGPACK_PP_FOR_123_I(s, p, o, m) MSGPACK_PP_IF(p(124, s), m, MSGPACK_PP_TUPLE_EAT_2)(124, s) MSGPACK_PP_IF(p(124, s), MSGPACK_PP_FOR_124, MSGPACK_PP_TUPLE_EAT_4)(o(124, s), p, o, m)
400
+ # define MSGPACK_PP_FOR_124_I(s, p, o, m) MSGPACK_PP_IF(p(125, s), m, MSGPACK_PP_TUPLE_EAT_2)(125, s) MSGPACK_PP_IF(p(125, s), MSGPACK_PP_FOR_125, MSGPACK_PP_TUPLE_EAT_4)(o(125, s), p, o, m)
401
+ # define MSGPACK_PP_FOR_125_I(s, p, o, m) MSGPACK_PP_IF(p(126, s), m, MSGPACK_PP_TUPLE_EAT_2)(126, s) MSGPACK_PP_IF(p(126, s), MSGPACK_PP_FOR_126, MSGPACK_PP_TUPLE_EAT_4)(o(126, s), p, o, m)
402
+ # define MSGPACK_PP_FOR_126_I(s, p, o, m) MSGPACK_PP_IF(p(127, s), m, MSGPACK_PP_TUPLE_EAT_2)(127, s) MSGPACK_PP_IF(p(127, s), MSGPACK_PP_FOR_127, MSGPACK_PP_TUPLE_EAT_4)(o(127, s), p, o, m)
403
+ # define MSGPACK_PP_FOR_127_I(s, p, o, m) MSGPACK_PP_IF(p(128, s), m, MSGPACK_PP_TUPLE_EAT_2)(128, s) MSGPACK_PP_IF(p(128, s), MSGPACK_PP_FOR_128, MSGPACK_PP_TUPLE_EAT_4)(o(128, s), p, o, m)
404
+ # define MSGPACK_PP_FOR_128_I(s, p, o, m) MSGPACK_PP_IF(p(129, s), m, MSGPACK_PP_TUPLE_EAT_2)(129, s) MSGPACK_PP_IF(p(129, s), MSGPACK_PP_FOR_129, MSGPACK_PP_TUPLE_EAT_4)(o(129, s), p, o, m)
405
+ # define MSGPACK_PP_FOR_129_I(s, p, o, m) MSGPACK_PP_IF(p(130, s), m, MSGPACK_PP_TUPLE_EAT_2)(130, s) MSGPACK_PP_IF(p(130, s), MSGPACK_PP_FOR_130, MSGPACK_PP_TUPLE_EAT_4)(o(130, s), p, o, m)
406
+ # define MSGPACK_PP_FOR_130_I(s, p, o, m) MSGPACK_PP_IF(p(131, s), m, MSGPACK_PP_TUPLE_EAT_2)(131, s) MSGPACK_PP_IF(p(131, s), MSGPACK_PP_FOR_131, MSGPACK_PP_TUPLE_EAT_4)(o(131, s), p, o, m)
407
+ # define MSGPACK_PP_FOR_131_I(s, p, o, m) MSGPACK_PP_IF(p(132, s), m, MSGPACK_PP_TUPLE_EAT_2)(132, s) MSGPACK_PP_IF(p(132, s), MSGPACK_PP_FOR_132, MSGPACK_PP_TUPLE_EAT_4)(o(132, s), p, o, m)
408
+ # define MSGPACK_PP_FOR_132_I(s, p, o, m) MSGPACK_PP_IF(p(133, s), m, MSGPACK_PP_TUPLE_EAT_2)(133, s) MSGPACK_PP_IF(p(133, s), MSGPACK_PP_FOR_133, MSGPACK_PP_TUPLE_EAT_4)(o(133, s), p, o, m)
409
+ # define MSGPACK_PP_FOR_133_I(s, p, o, m) MSGPACK_PP_IF(p(134, s), m, MSGPACK_PP_TUPLE_EAT_2)(134, s) MSGPACK_PP_IF(p(134, s), MSGPACK_PP_FOR_134, MSGPACK_PP_TUPLE_EAT_4)(o(134, s), p, o, m)
410
+ # define MSGPACK_PP_FOR_134_I(s, p, o, m) MSGPACK_PP_IF(p(135, s), m, MSGPACK_PP_TUPLE_EAT_2)(135, s) MSGPACK_PP_IF(p(135, s), MSGPACK_PP_FOR_135, MSGPACK_PP_TUPLE_EAT_4)(o(135, s), p, o, m)
411
+ # define MSGPACK_PP_FOR_135_I(s, p, o, m) MSGPACK_PP_IF(p(136, s), m, MSGPACK_PP_TUPLE_EAT_2)(136, s) MSGPACK_PP_IF(p(136, s), MSGPACK_PP_FOR_136, MSGPACK_PP_TUPLE_EAT_4)(o(136, s), p, o, m)
412
+ # define MSGPACK_PP_FOR_136_I(s, p, o, m) MSGPACK_PP_IF(p(137, s), m, MSGPACK_PP_TUPLE_EAT_2)(137, s) MSGPACK_PP_IF(p(137, s), MSGPACK_PP_FOR_137, MSGPACK_PP_TUPLE_EAT_4)(o(137, s), p, o, m)
413
+ # define MSGPACK_PP_FOR_137_I(s, p, o, m) MSGPACK_PP_IF(p(138, s), m, MSGPACK_PP_TUPLE_EAT_2)(138, s) MSGPACK_PP_IF(p(138, s), MSGPACK_PP_FOR_138, MSGPACK_PP_TUPLE_EAT_4)(o(138, s), p, o, m)
414
+ # define MSGPACK_PP_FOR_138_I(s, p, o, m) MSGPACK_PP_IF(p(139, s), m, MSGPACK_PP_TUPLE_EAT_2)(139, s) MSGPACK_PP_IF(p(139, s), MSGPACK_PP_FOR_139, MSGPACK_PP_TUPLE_EAT_4)(o(139, s), p, o, m)
415
+ # define MSGPACK_PP_FOR_139_I(s, p, o, m) MSGPACK_PP_IF(p(140, s), m, MSGPACK_PP_TUPLE_EAT_2)(140, s) MSGPACK_PP_IF(p(140, s), MSGPACK_PP_FOR_140, MSGPACK_PP_TUPLE_EAT_4)(o(140, s), p, o, m)
416
+ # define MSGPACK_PP_FOR_140_I(s, p, o, m) MSGPACK_PP_IF(p(141, s), m, MSGPACK_PP_TUPLE_EAT_2)(141, s) MSGPACK_PP_IF(p(141, s), MSGPACK_PP_FOR_141, MSGPACK_PP_TUPLE_EAT_4)(o(141, s), p, o, m)
417
+ # define MSGPACK_PP_FOR_141_I(s, p, o, m) MSGPACK_PP_IF(p(142, s), m, MSGPACK_PP_TUPLE_EAT_2)(142, s) MSGPACK_PP_IF(p(142, s), MSGPACK_PP_FOR_142, MSGPACK_PP_TUPLE_EAT_4)(o(142, s), p, o, m)
418
+ # define MSGPACK_PP_FOR_142_I(s, p, o, m) MSGPACK_PP_IF(p(143, s), m, MSGPACK_PP_TUPLE_EAT_2)(143, s) MSGPACK_PP_IF(p(143, s), MSGPACK_PP_FOR_143, MSGPACK_PP_TUPLE_EAT_4)(o(143, s), p, o, m)
419
+ # define MSGPACK_PP_FOR_143_I(s, p, o, m) MSGPACK_PP_IF(p(144, s), m, MSGPACK_PP_TUPLE_EAT_2)(144, s) MSGPACK_PP_IF(p(144, s), MSGPACK_PP_FOR_144, MSGPACK_PP_TUPLE_EAT_4)(o(144, s), p, o, m)
420
+ # define MSGPACK_PP_FOR_144_I(s, p, o, m) MSGPACK_PP_IF(p(145, s), m, MSGPACK_PP_TUPLE_EAT_2)(145, s) MSGPACK_PP_IF(p(145, s), MSGPACK_PP_FOR_145, MSGPACK_PP_TUPLE_EAT_4)(o(145, s), p, o, m)
421
+ # define MSGPACK_PP_FOR_145_I(s, p, o, m) MSGPACK_PP_IF(p(146, s), m, MSGPACK_PP_TUPLE_EAT_2)(146, s) MSGPACK_PP_IF(p(146, s), MSGPACK_PP_FOR_146, MSGPACK_PP_TUPLE_EAT_4)(o(146, s), p, o, m)
422
+ # define MSGPACK_PP_FOR_146_I(s, p, o, m) MSGPACK_PP_IF(p(147, s), m, MSGPACK_PP_TUPLE_EAT_2)(147, s) MSGPACK_PP_IF(p(147, s), MSGPACK_PP_FOR_147, MSGPACK_PP_TUPLE_EAT_4)(o(147, s), p, o, m)
423
+ # define MSGPACK_PP_FOR_147_I(s, p, o, m) MSGPACK_PP_IF(p(148, s), m, MSGPACK_PP_TUPLE_EAT_2)(148, s) MSGPACK_PP_IF(p(148, s), MSGPACK_PP_FOR_148, MSGPACK_PP_TUPLE_EAT_4)(o(148, s), p, o, m)
424
+ # define MSGPACK_PP_FOR_148_I(s, p, o, m) MSGPACK_PP_IF(p(149, s), m, MSGPACK_PP_TUPLE_EAT_2)(149, s) MSGPACK_PP_IF(p(149, s), MSGPACK_PP_FOR_149, MSGPACK_PP_TUPLE_EAT_4)(o(149, s), p, o, m)
425
+ # define MSGPACK_PP_FOR_149_I(s, p, o, m) MSGPACK_PP_IF(p(150, s), m, MSGPACK_PP_TUPLE_EAT_2)(150, s) MSGPACK_PP_IF(p(150, s), MSGPACK_PP_FOR_150, MSGPACK_PP_TUPLE_EAT_4)(o(150, s), p, o, m)
426
+ # define MSGPACK_PP_FOR_150_I(s, p, o, m) MSGPACK_PP_IF(p(151, s), m, MSGPACK_PP_TUPLE_EAT_2)(151, s) MSGPACK_PP_IF(p(151, s), MSGPACK_PP_FOR_151, MSGPACK_PP_TUPLE_EAT_4)(o(151, s), p, o, m)
427
+ # define MSGPACK_PP_FOR_151_I(s, p, o, m) MSGPACK_PP_IF(p(152, s), m, MSGPACK_PP_TUPLE_EAT_2)(152, s) MSGPACK_PP_IF(p(152, s), MSGPACK_PP_FOR_152, MSGPACK_PP_TUPLE_EAT_4)(o(152, s), p, o, m)
428
+ # define MSGPACK_PP_FOR_152_I(s, p, o, m) MSGPACK_PP_IF(p(153, s), m, MSGPACK_PP_TUPLE_EAT_2)(153, s) MSGPACK_PP_IF(p(153, s), MSGPACK_PP_FOR_153, MSGPACK_PP_TUPLE_EAT_4)(o(153, s), p, o, m)
429
+ # define MSGPACK_PP_FOR_153_I(s, p, o, m) MSGPACK_PP_IF(p(154, s), m, MSGPACK_PP_TUPLE_EAT_2)(154, s) MSGPACK_PP_IF(p(154, s), MSGPACK_PP_FOR_154, MSGPACK_PP_TUPLE_EAT_4)(o(154, s), p, o, m)
430
+ # define MSGPACK_PP_FOR_154_I(s, p, o, m) MSGPACK_PP_IF(p(155, s), m, MSGPACK_PP_TUPLE_EAT_2)(155, s) MSGPACK_PP_IF(p(155, s), MSGPACK_PP_FOR_155, MSGPACK_PP_TUPLE_EAT_4)(o(155, s), p, o, m)
431
+ # define MSGPACK_PP_FOR_155_I(s, p, o, m) MSGPACK_PP_IF(p(156, s), m, MSGPACK_PP_TUPLE_EAT_2)(156, s) MSGPACK_PP_IF(p(156, s), MSGPACK_PP_FOR_156, MSGPACK_PP_TUPLE_EAT_4)(o(156, s), p, o, m)
432
+ # define MSGPACK_PP_FOR_156_I(s, p, o, m) MSGPACK_PP_IF(p(157, s), m, MSGPACK_PP_TUPLE_EAT_2)(157, s) MSGPACK_PP_IF(p(157, s), MSGPACK_PP_FOR_157, MSGPACK_PP_TUPLE_EAT_4)(o(157, s), p, o, m)
433
+ # define MSGPACK_PP_FOR_157_I(s, p, o, m) MSGPACK_PP_IF(p(158, s), m, MSGPACK_PP_TUPLE_EAT_2)(158, s) MSGPACK_PP_IF(p(158, s), MSGPACK_PP_FOR_158, MSGPACK_PP_TUPLE_EAT_4)(o(158, s), p, o, m)
434
+ # define MSGPACK_PP_FOR_158_I(s, p, o, m) MSGPACK_PP_IF(p(159, s), m, MSGPACK_PP_TUPLE_EAT_2)(159, s) MSGPACK_PP_IF(p(159, s), MSGPACK_PP_FOR_159, MSGPACK_PP_TUPLE_EAT_4)(o(159, s), p, o, m)
435
+ # define MSGPACK_PP_FOR_159_I(s, p, o, m) MSGPACK_PP_IF(p(160, s), m, MSGPACK_PP_TUPLE_EAT_2)(160, s) MSGPACK_PP_IF(p(160, s), MSGPACK_PP_FOR_160, MSGPACK_PP_TUPLE_EAT_4)(o(160, s), p, o, m)
436
+ # define MSGPACK_PP_FOR_160_I(s, p, o, m) MSGPACK_PP_IF(p(161, s), m, MSGPACK_PP_TUPLE_EAT_2)(161, s) MSGPACK_PP_IF(p(161, s), MSGPACK_PP_FOR_161, MSGPACK_PP_TUPLE_EAT_4)(o(161, s), p, o, m)
437
+ # define MSGPACK_PP_FOR_161_I(s, p, o, m) MSGPACK_PP_IF(p(162, s), m, MSGPACK_PP_TUPLE_EAT_2)(162, s) MSGPACK_PP_IF(p(162, s), MSGPACK_PP_FOR_162, MSGPACK_PP_TUPLE_EAT_4)(o(162, s), p, o, m)
438
+ # define MSGPACK_PP_FOR_162_I(s, p, o, m) MSGPACK_PP_IF(p(163, s), m, MSGPACK_PP_TUPLE_EAT_2)(163, s) MSGPACK_PP_IF(p(163, s), MSGPACK_PP_FOR_163, MSGPACK_PP_TUPLE_EAT_4)(o(163, s), p, o, m)
439
+ # define MSGPACK_PP_FOR_163_I(s, p, o, m) MSGPACK_PP_IF(p(164, s), m, MSGPACK_PP_TUPLE_EAT_2)(164, s) MSGPACK_PP_IF(p(164, s), MSGPACK_PP_FOR_164, MSGPACK_PP_TUPLE_EAT_4)(o(164, s), p, o, m)
440
+ # define MSGPACK_PP_FOR_164_I(s, p, o, m) MSGPACK_PP_IF(p(165, s), m, MSGPACK_PP_TUPLE_EAT_2)(165, s) MSGPACK_PP_IF(p(165, s), MSGPACK_PP_FOR_165, MSGPACK_PP_TUPLE_EAT_4)(o(165, s), p, o, m)
441
+ # define MSGPACK_PP_FOR_165_I(s, p, o, m) MSGPACK_PP_IF(p(166, s), m, MSGPACK_PP_TUPLE_EAT_2)(166, s) MSGPACK_PP_IF(p(166, s), MSGPACK_PP_FOR_166, MSGPACK_PP_TUPLE_EAT_4)(o(166, s), p, o, m)
442
+ # define MSGPACK_PP_FOR_166_I(s, p, o, m) MSGPACK_PP_IF(p(167, s), m, MSGPACK_PP_TUPLE_EAT_2)(167, s) MSGPACK_PP_IF(p(167, s), MSGPACK_PP_FOR_167, MSGPACK_PP_TUPLE_EAT_4)(o(167, s), p, o, m)
443
+ # define MSGPACK_PP_FOR_167_I(s, p, o, m) MSGPACK_PP_IF(p(168, s), m, MSGPACK_PP_TUPLE_EAT_2)(168, s) MSGPACK_PP_IF(p(168, s), MSGPACK_PP_FOR_168, MSGPACK_PP_TUPLE_EAT_4)(o(168, s), p, o, m)
444
+ # define MSGPACK_PP_FOR_168_I(s, p, o, m) MSGPACK_PP_IF(p(169, s), m, MSGPACK_PP_TUPLE_EAT_2)(169, s) MSGPACK_PP_IF(p(169, s), MSGPACK_PP_FOR_169, MSGPACK_PP_TUPLE_EAT_4)(o(169, s), p, o, m)
445
+ # define MSGPACK_PP_FOR_169_I(s, p, o, m) MSGPACK_PP_IF(p(170, s), m, MSGPACK_PP_TUPLE_EAT_2)(170, s) MSGPACK_PP_IF(p(170, s), MSGPACK_PP_FOR_170, MSGPACK_PP_TUPLE_EAT_4)(o(170, s), p, o, m)
446
+ # define MSGPACK_PP_FOR_170_I(s, p, o, m) MSGPACK_PP_IF(p(171, s), m, MSGPACK_PP_TUPLE_EAT_2)(171, s) MSGPACK_PP_IF(p(171, s), MSGPACK_PP_FOR_171, MSGPACK_PP_TUPLE_EAT_4)(o(171, s), p, o, m)
447
+ # define MSGPACK_PP_FOR_171_I(s, p, o, m) MSGPACK_PP_IF(p(172, s), m, MSGPACK_PP_TUPLE_EAT_2)(172, s) MSGPACK_PP_IF(p(172, s), MSGPACK_PP_FOR_172, MSGPACK_PP_TUPLE_EAT_4)(o(172, s), p, o, m)
448
+ # define MSGPACK_PP_FOR_172_I(s, p, o, m) MSGPACK_PP_IF(p(173, s), m, MSGPACK_PP_TUPLE_EAT_2)(173, s) MSGPACK_PP_IF(p(173, s), MSGPACK_PP_FOR_173, MSGPACK_PP_TUPLE_EAT_4)(o(173, s), p, o, m)
449
+ # define MSGPACK_PP_FOR_173_I(s, p, o, m) MSGPACK_PP_IF(p(174, s), m, MSGPACK_PP_TUPLE_EAT_2)(174, s) MSGPACK_PP_IF(p(174, s), MSGPACK_PP_FOR_174, MSGPACK_PP_TUPLE_EAT_4)(o(174, s), p, o, m)
450
+ # define MSGPACK_PP_FOR_174_I(s, p, o, m) MSGPACK_PP_IF(p(175, s), m, MSGPACK_PP_TUPLE_EAT_2)(175, s) MSGPACK_PP_IF(p(175, s), MSGPACK_PP_FOR_175, MSGPACK_PP_TUPLE_EAT_4)(o(175, s), p, o, m)
451
+ # define MSGPACK_PP_FOR_175_I(s, p, o, m) MSGPACK_PP_IF(p(176, s), m, MSGPACK_PP_TUPLE_EAT_2)(176, s) MSGPACK_PP_IF(p(176, s), MSGPACK_PP_FOR_176, MSGPACK_PP_TUPLE_EAT_4)(o(176, s), p, o, m)
452
+ # define MSGPACK_PP_FOR_176_I(s, p, o, m) MSGPACK_PP_IF(p(177, s), m, MSGPACK_PP_TUPLE_EAT_2)(177, s) MSGPACK_PP_IF(p(177, s), MSGPACK_PP_FOR_177, MSGPACK_PP_TUPLE_EAT_4)(o(177, s), p, o, m)
453
+ # define MSGPACK_PP_FOR_177_I(s, p, o, m) MSGPACK_PP_IF(p(178, s), m, MSGPACK_PP_TUPLE_EAT_2)(178, s) MSGPACK_PP_IF(p(178, s), MSGPACK_PP_FOR_178, MSGPACK_PP_TUPLE_EAT_4)(o(178, s), p, o, m)
454
+ # define MSGPACK_PP_FOR_178_I(s, p, o, m) MSGPACK_PP_IF(p(179, s), m, MSGPACK_PP_TUPLE_EAT_2)(179, s) MSGPACK_PP_IF(p(179, s), MSGPACK_PP_FOR_179, MSGPACK_PP_TUPLE_EAT_4)(o(179, s), p, o, m)
455
+ # define MSGPACK_PP_FOR_179_I(s, p, o, m) MSGPACK_PP_IF(p(180, s), m, MSGPACK_PP_TUPLE_EAT_2)(180, s) MSGPACK_PP_IF(p(180, s), MSGPACK_PP_FOR_180, MSGPACK_PP_TUPLE_EAT_4)(o(180, s), p, o, m)
456
+ # define MSGPACK_PP_FOR_180_I(s, p, o, m) MSGPACK_PP_IF(p(181, s), m, MSGPACK_PP_TUPLE_EAT_2)(181, s) MSGPACK_PP_IF(p(181, s), MSGPACK_PP_FOR_181, MSGPACK_PP_TUPLE_EAT_4)(o(181, s), p, o, m)
457
+ # define MSGPACK_PP_FOR_181_I(s, p, o, m) MSGPACK_PP_IF(p(182, s), m, MSGPACK_PP_TUPLE_EAT_2)(182, s) MSGPACK_PP_IF(p(182, s), MSGPACK_PP_FOR_182, MSGPACK_PP_TUPLE_EAT_4)(o(182, s), p, o, m)
458
+ # define MSGPACK_PP_FOR_182_I(s, p, o, m) MSGPACK_PP_IF(p(183, s), m, MSGPACK_PP_TUPLE_EAT_2)(183, s) MSGPACK_PP_IF(p(183, s), MSGPACK_PP_FOR_183, MSGPACK_PP_TUPLE_EAT_4)(o(183, s), p, o, m)
459
+ # define MSGPACK_PP_FOR_183_I(s, p, o, m) MSGPACK_PP_IF(p(184, s), m, MSGPACK_PP_TUPLE_EAT_2)(184, s) MSGPACK_PP_IF(p(184, s), MSGPACK_PP_FOR_184, MSGPACK_PP_TUPLE_EAT_4)(o(184, s), p, o, m)
460
+ # define MSGPACK_PP_FOR_184_I(s, p, o, m) MSGPACK_PP_IF(p(185, s), m, MSGPACK_PP_TUPLE_EAT_2)(185, s) MSGPACK_PP_IF(p(185, s), MSGPACK_PP_FOR_185, MSGPACK_PP_TUPLE_EAT_4)(o(185, s), p, o, m)
461
+ # define MSGPACK_PP_FOR_185_I(s, p, o, m) MSGPACK_PP_IF(p(186, s), m, MSGPACK_PP_TUPLE_EAT_2)(186, s) MSGPACK_PP_IF(p(186, s), MSGPACK_PP_FOR_186, MSGPACK_PP_TUPLE_EAT_4)(o(186, s), p, o, m)
462
+ # define MSGPACK_PP_FOR_186_I(s, p, o, m) MSGPACK_PP_IF(p(187, s), m, MSGPACK_PP_TUPLE_EAT_2)(187, s) MSGPACK_PP_IF(p(187, s), MSGPACK_PP_FOR_187, MSGPACK_PP_TUPLE_EAT_4)(o(187, s), p, o, m)
463
+ # define MSGPACK_PP_FOR_187_I(s, p, o, m) MSGPACK_PP_IF(p(188, s), m, MSGPACK_PP_TUPLE_EAT_2)(188, s) MSGPACK_PP_IF(p(188, s), MSGPACK_PP_FOR_188, MSGPACK_PP_TUPLE_EAT_4)(o(188, s), p, o, m)
464
+ # define MSGPACK_PP_FOR_188_I(s, p, o, m) MSGPACK_PP_IF(p(189, s), m, MSGPACK_PP_TUPLE_EAT_2)(189, s) MSGPACK_PP_IF(p(189, s), MSGPACK_PP_FOR_189, MSGPACK_PP_TUPLE_EAT_4)(o(189, s), p, o, m)
465
+ # define MSGPACK_PP_FOR_189_I(s, p, o, m) MSGPACK_PP_IF(p(190, s), m, MSGPACK_PP_TUPLE_EAT_2)(190, s) MSGPACK_PP_IF(p(190, s), MSGPACK_PP_FOR_190, MSGPACK_PP_TUPLE_EAT_4)(o(190, s), p, o, m)
466
+ # define MSGPACK_PP_FOR_190_I(s, p, o, m) MSGPACK_PP_IF(p(191, s), m, MSGPACK_PP_TUPLE_EAT_2)(191, s) MSGPACK_PP_IF(p(191, s), MSGPACK_PP_FOR_191, MSGPACK_PP_TUPLE_EAT_4)(o(191, s), p, o, m)
467
+ # define MSGPACK_PP_FOR_191_I(s, p, o, m) MSGPACK_PP_IF(p(192, s), m, MSGPACK_PP_TUPLE_EAT_2)(192, s) MSGPACK_PP_IF(p(192, s), MSGPACK_PP_FOR_192, MSGPACK_PP_TUPLE_EAT_4)(o(192, s), p, o, m)
468
+ # define MSGPACK_PP_FOR_192_I(s, p, o, m) MSGPACK_PP_IF(p(193, s), m, MSGPACK_PP_TUPLE_EAT_2)(193, s) MSGPACK_PP_IF(p(193, s), MSGPACK_PP_FOR_193, MSGPACK_PP_TUPLE_EAT_4)(o(193, s), p, o, m)
469
+ # define MSGPACK_PP_FOR_193_I(s, p, o, m) MSGPACK_PP_IF(p(194, s), m, MSGPACK_PP_TUPLE_EAT_2)(194, s) MSGPACK_PP_IF(p(194, s), MSGPACK_PP_FOR_194, MSGPACK_PP_TUPLE_EAT_4)(o(194, s), p, o, m)
470
+ # define MSGPACK_PP_FOR_194_I(s, p, o, m) MSGPACK_PP_IF(p(195, s), m, MSGPACK_PP_TUPLE_EAT_2)(195, s) MSGPACK_PP_IF(p(195, s), MSGPACK_PP_FOR_195, MSGPACK_PP_TUPLE_EAT_4)(o(195, s), p, o, m)
471
+ # define MSGPACK_PP_FOR_195_I(s, p, o, m) MSGPACK_PP_IF(p(196, s), m, MSGPACK_PP_TUPLE_EAT_2)(196, s) MSGPACK_PP_IF(p(196, s), MSGPACK_PP_FOR_196, MSGPACK_PP_TUPLE_EAT_4)(o(196, s), p, o, m)
472
+ # define MSGPACK_PP_FOR_196_I(s, p, o, m) MSGPACK_PP_IF(p(197, s), m, MSGPACK_PP_TUPLE_EAT_2)(197, s) MSGPACK_PP_IF(p(197, s), MSGPACK_PP_FOR_197, MSGPACK_PP_TUPLE_EAT_4)(o(197, s), p, o, m)
473
+ # define MSGPACK_PP_FOR_197_I(s, p, o, m) MSGPACK_PP_IF(p(198, s), m, MSGPACK_PP_TUPLE_EAT_2)(198, s) MSGPACK_PP_IF(p(198, s), MSGPACK_PP_FOR_198, MSGPACK_PP_TUPLE_EAT_4)(o(198, s), p, o, m)
474
+ # define MSGPACK_PP_FOR_198_I(s, p, o, m) MSGPACK_PP_IF(p(199, s), m, MSGPACK_PP_TUPLE_EAT_2)(199, s) MSGPACK_PP_IF(p(199, s), MSGPACK_PP_FOR_199, MSGPACK_PP_TUPLE_EAT_4)(o(199, s), p, o, m)
475
+ # define MSGPACK_PP_FOR_199_I(s, p, o, m) MSGPACK_PP_IF(p(200, s), m, MSGPACK_PP_TUPLE_EAT_2)(200, s) MSGPACK_PP_IF(p(200, s), MSGPACK_PP_FOR_200, MSGPACK_PP_TUPLE_EAT_4)(o(200, s), p, o, m)
476
+ # define MSGPACK_PP_FOR_200_I(s, p, o, m) MSGPACK_PP_IF(p(201, s), m, MSGPACK_PP_TUPLE_EAT_2)(201, s) MSGPACK_PP_IF(p(201, s), MSGPACK_PP_FOR_201, MSGPACK_PP_TUPLE_EAT_4)(o(201, s), p, o, m)
477
+ # define MSGPACK_PP_FOR_201_I(s, p, o, m) MSGPACK_PP_IF(p(202, s), m, MSGPACK_PP_TUPLE_EAT_2)(202, s) MSGPACK_PP_IF(p(202, s), MSGPACK_PP_FOR_202, MSGPACK_PP_TUPLE_EAT_4)(o(202, s), p, o, m)
478
+ # define MSGPACK_PP_FOR_202_I(s, p, o, m) MSGPACK_PP_IF(p(203, s), m, MSGPACK_PP_TUPLE_EAT_2)(203, s) MSGPACK_PP_IF(p(203, s), MSGPACK_PP_FOR_203, MSGPACK_PP_TUPLE_EAT_4)(o(203, s), p, o, m)
479
+ # define MSGPACK_PP_FOR_203_I(s, p, o, m) MSGPACK_PP_IF(p(204, s), m, MSGPACK_PP_TUPLE_EAT_2)(204, s) MSGPACK_PP_IF(p(204, s), MSGPACK_PP_FOR_204, MSGPACK_PP_TUPLE_EAT_4)(o(204, s), p, o, m)
480
+ # define MSGPACK_PP_FOR_204_I(s, p, o, m) MSGPACK_PP_IF(p(205, s), m, MSGPACK_PP_TUPLE_EAT_2)(205, s) MSGPACK_PP_IF(p(205, s), MSGPACK_PP_FOR_205, MSGPACK_PP_TUPLE_EAT_4)(o(205, s), p, o, m)
481
+ # define MSGPACK_PP_FOR_205_I(s, p, o, m) MSGPACK_PP_IF(p(206, s), m, MSGPACK_PP_TUPLE_EAT_2)(206, s) MSGPACK_PP_IF(p(206, s), MSGPACK_PP_FOR_206, MSGPACK_PP_TUPLE_EAT_4)(o(206, s), p, o, m)
482
+ # define MSGPACK_PP_FOR_206_I(s, p, o, m) MSGPACK_PP_IF(p(207, s), m, MSGPACK_PP_TUPLE_EAT_2)(207, s) MSGPACK_PP_IF(p(207, s), MSGPACK_PP_FOR_207, MSGPACK_PP_TUPLE_EAT_4)(o(207, s), p, o, m)
483
+ # define MSGPACK_PP_FOR_207_I(s, p, o, m) MSGPACK_PP_IF(p(208, s), m, MSGPACK_PP_TUPLE_EAT_2)(208, s) MSGPACK_PP_IF(p(208, s), MSGPACK_PP_FOR_208, MSGPACK_PP_TUPLE_EAT_4)(o(208, s), p, o, m)
484
+ # define MSGPACK_PP_FOR_208_I(s, p, o, m) MSGPACK_PP_IF(p(209, s), m, MSGPACK_PP_TUPLE_EAT_2)(209, s) MSGPACK_PP_IF(p(209, s), MSGPACK_PP_FOR_209, MSGPACK_PP_TUPLE_EAT_4)(o(209, s), p, o, m)
485
+ # define MSGPACK_PP_FOR_209_I(s, p, o, m) MSGPACK_PP_IF(p(210, s), m, MSGPACK_PP_TUPLE_EAT_2)(210, s) MSGPACK_PP_IF(p(210, s), MSGPACK_PP_FOR_210, MSGPACK_PP_TUPLE_EAT_4)(o(210, s), p, o, m)
486
+ # define MSGPACK_PP_FOR_210_I(s, p, o, m) MSGPACK_PP_IF(p(211, s), m, MSGPACK_PP_TUPLE_EAT_2)(211, s) MSGPACK_PP_IF(p(211, s), MSGPACK_PP_FOR_211, MSGPACK_PP_TUPLE_EAT_4)(o(211, s), p, o, m)
487
+ # define MSGPACK_PP_FOR_211_I(s, p, o, m) MSGPACK_PP_IF(p(212, s), m, MSGPACK_PP_TUPLE_EAT_2)(212, s) MSGPACK_PP_IF(p(212, s), MSGPACK_PP_FOR_212, MSGPACK_PP_TUPLE_EAT_4)(o(212, s), p, o, m)
488
+ # define MSGPACK_PP_FOR_212_I(s, p, o, m) MSGPACK_PP_IF(p(213, s), m, MSGPACK_PP_TUPLE_EAT_2)(213, s) MSGPACK_PP_IF(p(213, s), MSGPACK_PP_FOR_213, MSGPACK_PP_TUPLE_EAT_4)(o(213, s), p, o, m)
489
+ # define MSGPACK_PP_FOR_213_I(s, p, o, m) MSGPACK_PP_IF(p(214, s), m, MSGPACK_PP_TUPLE_EAT_2)(214, s) MSGPACK_PP_IF(p(214, s), MSGPACK_PP_FOR_214, MSGPACK_PP_TUPLE_EAT_4)(o(214, s), p, o, m)
490
+ # define MSGPACK_PP_FOR_214_I(s, p, o, m) MSGPACK_PP_IF(p(215, s), m, MSGPACK_PP_TUPLE_EAT_2)(215, s) MSGPACK_PP_IF(p(215, s), MSGPACK_PP_FOR_215, MSGPACK_PP_TUPLE_EAT_4)(o(215, s), p, o, m)
491
+ # define MSGPACK_PP_FOR_215_I(s, p, o, m) MSGPACK_PP_IF(p(216, s), m, MSGPACK_PP_TUPLE_EAT_2)(216, s) MSGPACK_PP_IF(p(216, s), MSGPACK_PP_FOR_216, MSGPACK_PP_TUPLE_EAT_4)(o(216, s), p, o, m)
492
+ # define MSGPACK_PP_FOR_216_I(s, p, o, m) MSGPACK_PP_IF(p(217, s), m, MSGPACK_PP_TUPLE_EAT_2)(217, s) MSGPACK_PP_IF(p(217, s), MSGPACK_PP_FOR_217, MSGPACK_PP_TUPLE_EAT_4)(o(217, s), p, o, m)
493
+ # define MSGPACK_PP_FOR_217_I(s, p, o, m) MSGPACK_PP_IF(p(218, s), m, MSGPACK_PP_TUPLE_EAT_2)(218, s) MSGPACK_PP_IF(p(218, s), MSGPACK_PP_FOR_218, MSGPACK_PP_TUPLE_EAT_4)(o(218, s), p, o, m)
494
+ # define MSGPACK_PP_FOR_218_I(s, p, o, m) MSGPACK_PP_IF(p(219, s), m, MSGPACK_PP_TUPLE_EAT_2)(219, s) MSGPACK_PP_IF(p(219, s), MSGPACK_PP_FOR_219, MSGPACK_PP_TUPLE_EAT_4)(o(219, s), p, o, m)
495
+ # define MSGPACK_PP_FOR_219_I(s, p, o, m) MSGPACK_PP_IF(p(220, s), m, MSGPACK_PP_TUPLE_EAT_2)(220, s) MSGPACK_PP_IF(p(220, s), MSGPACK_PP_FOR_220, MSGPACK_PP_TUPLE_EAT_4)(o(220, s), p, o, m)
496
+ # define MSGPACK_PP_FOR_220_I(s, p, o, m) MSGPACK_PP_IF(p(221, s), m, MSGPACK_PP_TUPLE_EAT_2)(221, s) MSGPACK_PP_IF(p(221, s), MSGPACK_PP_FOR_221, MSGPACK_PP_TUPLE_EAT_4)(o(221, s), p, o, m)
497
+ # define MSGPACK_PP_FOR_221_I(s, p, o, m) MSGPACK_PP_IF(p(222, s), m, MSGPACK_PP_TUPLE_EAT_2)(222, s) MSGPACK_PP_IF(p(222, s), MSGPACK_PP_FOR_222, MSGPACK_PP_TUPLE_EAT_4)(o(222, s), p, o, m)
498
+ # define MSGPACK_PP_FOR_222_I(s, p, o, m) MSGPACK_PP_IF(p(223, s), m, MSGPACK_PP_TUPLE_EAT_2)(223, s) MSGPACK_PP_IF(p(223, s), MSGPACK_PP_FOR_223, MSGPACK_PP_TUPLE_EAT_4)(o(223, s), p, o, m)
499
+ # define MSGPACK_PP_FOR_223_I(s, p, o, m) MSGPACK_PP_IF(p(224, s), m, MSGPACK_PP_TUPLE_EAT_2)(224, s) MSGPACK_PP_IF(p(224, s), MSGPACK_PP_FOR_224, MSGPACK_PP_TUPLE_EAT_4)(o(224, s), p, o, m)
500
+ # define MSGPACK_PP_FOR_224_I(s, p, o, m) MSGPACK_PP_IF(p(225, s), m, MSGPACK_PP_TUPLE_EAT_2)(225, s) MSGPACK_PP_IF(p(225, s), MSGPACK_PP_FOR_225, MSGPACK_PP_TUPLE_EAT_4)(o(225, s), p, o, m)
501
+ # define MSGPACK_PP_FOR_225_I(s, p, o, m) MSGPACK_PP_IF(p(226, s), m, MSGPACK_PP_TUPLE_EAT_2)(226, s) MSGPACK_PP_IF(p(226, s), MSGPACK_PP_FOR_226, MSGPACK_PP_TUPLE_EAT_4)(o(226, s), p, o, m)
502
+ # define MSGPACK_PP_FOR_226_I(s, p, o, m) MSGPACK_PP_IF(p(227, s), m, MSGPACK_PP_TUPLE_EAT_2)(227, s) MSGPACK_PP_IF(p(227, s), MSGPACK_PP_FOR_227, MSGPACK_PP_TUPLE_EAT_4)(o(227, s), p, o, m)
503
+ # define MSGPACK_PP_FOR_227_I(s, p, o, m) MSGPACK_PP_IF(p(228, s), m, MSGPACK_PP_TUPLE_EAT_2)(228, s) MSGPACK_PP_IF(p(228, s), MSGPACK_PP_FOR_228, MSGPACK_PP_TUPLE_EAT_4)(o(228, s), p, o, m)
504
+ # define MSGPACK_PP_FOR_228_I(s, p, o, m) MSGPACK_PP_IF(p(229, s), m, MSGPACK_PP_TUPLE_EAT_2)(229, s) MSGPACK_PP_IF(p(229, s), MSGPACK_PP_FOR_229, MSGPACK_PP_TUPLE_EAT_4)(o(229, s), p, o, m)
505
+ # define MSGPACK_PP_FOR_229_I(s, p, o, m) MSGPACK_PP_IF(p(230, s), m, MSGPACK_PP_TUPLE_EAT_2)(230, s) MSGPACK_PP_IF(p(230, s), MSGPACK_PP_FOR_230, MSGPACK_PP_TUPLE_EAT_4)(o(230, s), p, o, m)
506
+ # define MSGPACK_PP_FOR_230_I(s, p, o, m) MSGPACK_PP_IF(p(231, s), m, MSGPACK_PP_TUPLE_EAT_2)(231, s) MSGPACK_PP_IF(p(231, s), MSGPACK_PP_FOR_231, MSGPACK_PP_TUPLE_EAT_4)(o(231, s), p, o, m)
507
+ # define MSGPACK_PP_FOR_231_I(s, p, o, m) MSGPACK_PP_IF(p(232, s), m, MSGPACK_PP_TUPLE_EAT_2)(232, s) MSGPACK_PP_IF(p(232, s), MSGPACK_PP_FOR_232, MSGPACK_PP_TUPLE_EAT_4)(o(232, s), p, o, m)
508
+ # define MSGPACK_PP_FOR_232_I(s, p, o, m) MSGPACK_PP_IF(p(233, s), m, MSGPACK_PP_TUPLE_EAT_2)(233, s) MSGPACK_PP_IF(p(233, s), MSGPACK_PP_FOR_233, MSGPACK_PP_TUPLE_EAT_4)(o(233, s), p, o, m)
509
+ # define MSGPACK_PP_FOR_233_I(s, p, o, m) MSGPACK_PP_IF(p(234, s), m, MSGPACK_PP_TUPLE_EAT_2)(234, s) MSGPACK_PP_IF(p(234, s), MSGPACK_PP_FOR_234, MSGPACK_PP_TUPLE_EAT_4)(o(234, s), p, o, m)
510
+ # define MSGPACK_PP_FOR_234_I(s, p, o, m) MSGPACK_PP_IF(p(235, s), m, MSGPACK_PP_TUPLE_EAT_2)(235, s) MSGPACK_PP_IF(p(235, s), MSGPACK_PP_FOR_235, MSGPACK_PP_TUPLE_EAT_4)(o(235, s), p, o, m)
511
+ # define MSGPACK_PP_FOR_235_I(s, p, o, m) MSGPACK_PP_IF(p(236, s), m, MSGPACK_PP_TUPLE_EAT_2)(236, s) MSGPACK_PP_IF(p(236, s), MSGPACK_PP_FOR_236, MSGPACK_PP_TUPLE_EAT_4)(o(236, s), p, o, m)
512
+ # define MSGPACK_PP_FOR_236_I(s, p, o, m) MSGPACK_PP_IF(p(237, s), m, MSGPACK_PP_TUPLE_EAT_2)(237, s) MSGPACK_PP_IF(p(237, s), MSGPACK_PP_FOR_237, MSGPACK_PP_TUPLE_EAT_4)(o(237, s), p, o, m)
513
+ # define MSGPACK_PP_FOR_237_I(s, p, o, m) MSGPACK_PP_IF(p(238, s), m, MSGPACK_PP_TUPLE_EAT_2)(238, s) MSGPACK_PP_IF(p(238, s), MSGPACK_PP_FOR_238, MSGPACK_PP_TUPLE_EAT_4)(o(238, s), p, o, m)
514
+ # define MSGPACK_PP_FOR_238_I(s, p, o, m) MSGPACK_PP_IF(p(239, s), m, MSGPACK_PP_TUPLE_EAT_2)(239, s) MSGPACK_PP_IF(p(239, s), MSGPACK_PP_FOR_239, MSGPACK_PP_TUPLE_EAT_4)(o(239, s), p, o, m)
515
+ # define MSGPACK_PP_FOR_239_I(s, p, o, m) MSGPACK_PP_IF(p(240, s), m, MSGPACK_PP_TUPLE_EAT_2)(240, s) MSGPACK_PP_IF(p(240, s), MSGPACK_PP_FOR_240, MSGPACK_PP_TUPLE_EAT_4)(o(240, s), p, o, m)
516
+ # define MSGPACK_PP_FOR_240_I(s, p, o, m) MSGPACK_PP_IF(p(241, s), m, MSGPACK_PP_TUPLE_EAT_2)(241, s) MSGPACK_PP_IF(p(241, s), MSGPACK_PP_FOR_241, MSGPACK_PP_TUPLE_EAT_4)(o(241, s), p, o, m)
517
+ # define MSGPACK_PP_FOR_241_I(s, p, o, m) MSGPACK_PP_IF(p(242, s), m, MSGPACK_PP_TUPLE_EAT_2)(242, s) MSGPACK_PP_IF(p(242, s), MSGPACK_PP_FOR_242, MSGPACK_PP_TUPLE_EAT_4)(o(242, s), p, o, m)
518
+ # define MSGPACK_PP_FOR_242_I(s, p, o, m) MSGPACK_PP_IF(p(243, s), m, MSGPACK_PP_TUPLE_EAT_2)(243, s) MSGPACK_PP_IF(p(243, s), MSGPACK_PP_FOR_243, MSGPACK_PP_TUPLE_EAT_4)(o(243, s), p, o, m)
519
+ # define MSGPACK_PP_FOR_243_I(s, p, o, m) MSGPACK_PP_IF(p(244, s), m, MSGPACK_PP_TUPLE_EAT_2)(244, s) MSGPACK_PP_IF(p(244, s), MSGPACK_PP_FOR_244, MSGPACK_PP_TUPLE_EAT_4)(o(244, s), p, o, m)
520
+ # define MSGPACK_PP_FOR_244_I(s, p, o, m) MSGPACK_PP_IF(p(245, s), m, MSGPACK_PP_TUPLE_EAT_2)(245, s) MSGPACK_PP_IF(p(245, s), MSGPACK_PP_FOR_245, MSGPACK_PP_TUPLE_EAT_4)(o(245, s), p, o, m)
521
+ # define MSGPACK_PP_FOR_245_I(s, p, o, m) MSGPACK_PP_IF(p(246, s), m, MSGPACK_PP_TUPLE_EAT_2)(246, s) MSGPACK_PP_IF(p(246, s), MSGPACK_PP_FOR_246, MSGPACK_PP_TUPLE_EAT_4)(o(246, s), p, o, m)
522
+ # define MSGPACK_PP_FOR_246_I(s, p, o, m) MSGPACK_PP_IF(p(247, s), m, MSGPACK_PP_TUPLE_EAT_2)(247, s) MSGPACK_PP_IF(p(247, s), MSGPACK_PP_FOR_247, MSGPACK_PP_TUPLE_EAT_4)(o(247, s), p, o, m)
523
+ # define MSGPACK_PP_FOR_247_I(s, p, o, m) MSGPACK_PP_IF(p(248, s), m, MSGPACK_PP_TUPLE_EAT_2)(248, s) MSGPACK_PP_IF(p(248, s), MSGPACK_PP_FOR_248, MSGPACK_PP_TUPLE_EAT_4)(o(248, s), p, o, m)
524
+ # define MSGPACK_PP_FOR_248_I(s, p, o, m) MSGPACK_PP_IF(p(249, s), m, MSGPACK_PP_TUPLE_EAT_2)(249, s) MSGPACK_PP_IF(p(249, s), MSGPACK_PP_FOR_249, MSGPACK_PP_TUPLE_EAT_4)(o(249, s), p, o, m)
525
+ # define MSGPACK_PP_FOR_249_I(s, p, o, m) MSGPACK_PP_IF(p(250, s), m, MSGPACK_PP_TUPLE_EAT_2)(250, s) MSGPACK_PP_IF(p(250, s), MSGPACK_PP_FOR_250, MSGPACK_PP_TUPLE_EAT_4)(o(250, s), p, o, m)
526
+ # define MSGPACK_PP_FOR_250_I(s, p, o, m) MSGPACK_PP_IF(p(251, s), m, MSGPACK_PP_TUPLE_EAT_2)(251, s) MSGPACK_PP_IF(p(251, s), MSGPACK_PP_FOR_251, MSGPACK_PP_TUPLE_EAT_4)(o(251, s), p, o, m)
527
+ # define MSGPACK_PP_FOR_251_I(s, p, o, m) MSGPACK_PP_IF(p(252, s), m, MSGPACK_PP_TUPLE_EAT_2)(252, s) MSGPACK_PP_IF(p(252, s), MSGPACK_PP_FOR_252, MSGPACK_PP_TUPLE_EAT_4)(o(252, s), p, o, m)
528
+ # define MSGPACK_PP_FOR_252_I(s, p, o, m) MSGPACK_PP_IF(p(253, s), m, MSGPACK_PP_TUPLE_EAT_2)(253, s) MSGPACK_PP_IF(p(253, s), MSGPACK_PP_FOR_253, MSGPACK_PP_TUPLE_EAT_4)(o(253, s), p, o, m)
529
+ # define MSGPACK_PP_FOR_253_I(s, p, o, m) MSGPACK_PP_IF(p(254, s), m, MSGPACK_PP_TUPLE_EAT_2)(254, s) MSGPACK_PP_IF(p(254, s), MSGPACK_PP_FOR_254, MSGPACK_PP_TUPLE_EAT_4)(o(254, s), p, o, m)
530
+ # define MSGPACK_PP_FOR_254_I(s, p, o, m) MSGPACK_PP_IF(p(255, s), m, MSGPACK_PP_TUPLE_EAT_2)(255, s) MSGPACK_PP_IF(p(255, s), MSGPACK_PP_FOR_255, MSGPACK_PP_TUPLE_EAT_4)(o(255, s), p, o, m)
531
+ # define MSGPACK_PP_FOR_255_I(s, p, o, m) MSGPACK_PP_IF(p(256, s), m, MSGPACK_PP_TUPLE_EAT_2)(256, s) MSGPACK_PP_IF(p(256, s), MSGPACK_PP_FOR_256, MSGPACK_PP_TUPLE_EAT_4)(o(256, s), p, o, m)
532
+ # define MSGPACK_PP_FOR_256_I(s, p, o, m) MSGPACK_PP_IF(p(257, s), m, MSGPACK_PP_TUPLE_EAT_2)(257, s) MSGPACK_PP_IF(p(257, s), MSGPACK_PP_FOR_257, MSGPACK_PP_TUPLE_EAT_4)(o(257, s), p, o, m)
533
+ #
534
+ # endif