ric 0.12.0 → 0.12.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1206) hide show
  1. checksums.yaml +7 -0
  2. checksums.yaml.gz.sig +1 -0
  3. data.tar.gz.sig +2 -0
  4. data/Gemfile +0 -1
  5. data/HISTORY.yml +2 -0
  6. data/LICENSE +1 -1
  7. data/Makefile +12 -2
  8. data/Manifest +1189 -4
  9. data/Rakefile +16 -9
  10. data/VERSION +1 -1
  11. data/ric.gemspec +31 -27
  12. data/vendor/bundle/ruby/2.5.0/bin/allison +27 -0
  13. data/vendor/bundle/ruby/2.5.0/bin/rake +27 -0
  14. data/vendor/bundle/ruby/2.5.0/bin/rdoc +27 -0
  15. data/vendor/bundle/ruby/2.5.0/bin/ri +27 -0
  16. data/vendor/bundle/ruby/2.5.0/bin/rubyforge +27 -0
  17. data/vendor/bundle/ruby/2.5.0/cache/activemodel-5.2.3.gem +0 -0
  18. data/vendor/bundle/ruby/2.5.0/cache/activemodel-serializers-xml-1.0.2.gem +0 -0
  19. data/vendor/bundle/ruby/2.5.0/cache/activeresource-5.1.0.gem +0 -0
  20. data/vendor/bundle/ruby/2.5.0/cache/activesupport-5.2.3.gem +0 -0
  21. data/vendor/bundle/ruby/2.5.0/cache/allison-2.0.3.gem +0 -0
  22. data/vendor/bundle/ruby/2.5.0/cache/builder-3.2.3.gem +0 -0
  23. data/vendor/bundle/ruby/2.5.0/cache/concurrent-ruby-1.1.5.gem +0 -0
  24. data/vendor/bundle/ruby/2.5.0/cache/echoe-4.6.6.gem +0 -0
  25. data/vendor/bundle/ruby/2.5.0/cache/i18n-1.6.0.gem +0 -0
  26. data/vendor/bundle/ruby/2.5.0/cache/json_pure-2.2.0.gem +0 -0
  27. data/vendor/bundle/ruby/2.5.0/cache/minitest-5.11.3.gem +0 -0
  28. data/vendor/bundle/ruby/2.5.0/cache/rake-12.3.2.gem +0 -0
  29. data/vendor/bundle/ruby/2.5.0/cache/rdoc-6.1.1.gem +0 -0
  30. data/vendor/bundle/ruby/2.5.0/cache/rubyforge-2.0.4.gem +0 -0
  31. data/vendor/bundle/ruby/2.5.0/cache/thread_safe-0.3.6.gem +0 -0
  32. data/vendor/bundle/ruby/2.5.0/cache/tzinfo-1.2.5.gem +0 -0
  33. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/CHANGELOG.md +114 -0
  34. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/MIT-LICENSE +21 -0
  35. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/README.rdoc +264 -0
  36. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model.rb +77 -0
  37. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute.rb +248 -0
  38. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute/user_provided_default.rb +52 -0
  39. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute_assignment.rb +57 -0
  40. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute_methods.rb +478 -0
  41. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute_mutation_tracker.rb +124 -0
  42. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute_set.rb +114 -0
  43. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute_set/builder.rb +126 -0
  44. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attribute_set/yaml_encoder.rb +41 -0
  45. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/attributes.rb +111 -0
  46. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/callbacks.rb +153 -0
  47. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/conversion.rb +111 -0
  48. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/dirty.rb +343 -0
  49. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/errors.rb +517 -0
  50. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/forbidden_attributes_protection.rb +31 -0
  51. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/gem_version.rb +17 -0
  52. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/lint.rb +118 -0
  53. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/locale/en.yml +36 -0
  54. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/model.rb +99 -0
  55. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/naming.rb +318 -0
  56. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/railtie.rb +14 -0
  57. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/secure_password.rb +129 -0
  58. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/serialization.rb +192 -0
  59. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/serializers/json.rb +146 -0
  60. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/translation.rb +70 -0
  61. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type.rb +53 -0
  62. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/big_integer.rb +15 -0
  63. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/binary.rb +52 -0
  64. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/boolean.rb +38 -0
  65. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/date.rb +57 -0
  66. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/date_time.rb +51 -0
  67. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/decimal.rb +70 -0
  68. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/float.rb +36 -0
  69. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/helpers.rb +7 -0
  70. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/helpers/accepts_multiparameter_time.rb +41 -0
  71. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/helpers/mutable.rb +20 -0
  72. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/helpers/numeric.rb +37 -0
  73. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/helpers/time_value.rb +68 -0
  74. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/helpers/timezone.rb +19 -0
  75. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/immutable_string.rb +32 -0
  76. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/integer.rb +70 -0
  77. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/registry.rb +70 -0
  78. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/string.rb +26 -0
  79. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/time.rb +51 -0
  80. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/type/value.rb +126 -0
  81. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations.rb +439 -0
  82. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/absence.rb +33 -0
  83. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/acceptance.rb +106 -0
  84. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/callbacks.rb +122 -0
  85. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/clusivity.rb +54 -0
  86. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/confirmation.rb +80 -0
  87. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/exclusion.rb +49 -0
  88. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/format.rb +114 -0
  89. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/helper_methods.rb +15 -0
  90. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/inclusion.rb +47 -0
  91. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/length.rb +129 -0
  92. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/numericality.rb +189 -0
  93. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/presence.rb +39 -0
  94. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/validates.rb +174 -0
  95. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validations/with.rb +147 -0
  96. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/validator.rb +183 -0
  97. data/vendor/bundle/ruby/2.5.0/gems/activemodel-5.2.3/lib/active_model/version.rb +10 -0
  98. data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/CONTRIBUTING.md +99 -0
  99. data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/Gemfile +4 -0
  100. data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/MIT-LICENSE +21 -0
  101. data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/README.md +89 -0
  102. data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/Rakefile +10 -0
  103. data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/activemodel-serializers-xml.gemspec +25 -0
  104. data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/lib/active_model/serializers.rb +23 -0
  105. data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/lib/active_model/serializers/version.rb +5 -0
  106. data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/lib/active_model/serializers/xml.rb +238 -0
  107. data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/lib/active_record/serializers/xml_serializer.rb +194 -0
  108. data/vendor/bundle/ruby/2.5.0/gems/activemodel-serializers-xml-1.0.2/lib/activemodel-serializers-xml.rb +1 -0
  109. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/MIT-LICENSE +20 -0
  110. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/README.rdoc +285 -0
  111. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource.rb +46 -0
  112. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/active_job_serializer.rb +26 -0
  113. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/associations.rb +175 -0
  114. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/associations/builder/association.rb +33 -0
  115. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/associations/builder/belongs_to.rb +16 -0
  116. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/associations/builder/has_many.rb +14 -0
  117. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/associations/builder/has_one.rb +14 -0
  118. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/base.rb +1695 -0
  119. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/callbacks.rb +22 -0
  120. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/collection.rb +94 -0
  121. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/connection.rb +294 -0
  122. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/custom_methods.rb +129 -0
  123. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/exceptions.rb +84 -0
  124. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/formats.rb +24 -0
  125. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/formats/json_format.rb +28 -0
  126. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/formats/xml_format.rb +27 -0
  127. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/http_mock.rb +373 -0
  128. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/log_subscriber.rb +26 -0
  129. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/observing.rb +0 -0
  130. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/railtie.rb +25 -0
  131. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/reflection.rb +78 -0
  132. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/schema.rb +59 -0
  133. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/singleton.rb +113 -0
  134. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/threadsafe_attributes.rb +66 -0
  135. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/validations.rb +176 -0
  136. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/active_resource/version.rb +12 -0
  137. data/vendor/bundle/ruby/2.5.0/gems/activeresource-5.1.0/lib/activeresource.rb +3 -0
  138. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/CHANGELOG.md +602 -0
  139. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/MIT-LICENSE +20 -0
  140. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/README.rdoc +39 -0
  141. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support.rb +95 -0
  142. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/all.rb +5 -0
  143. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/array_inquirer.rb +48 -0
  144. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/backtrace_cleaner.rb +105 -0
  145. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/benchmarkable.rb +51 -0
  146. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/builder.rb +8 -0
  147. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache.rb +808 -0
  148. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache/file_store.rb +196 -0
  149. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache/mem_cache_store.rb +207 -0
  150. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache/memory_store.rb +169 -0
  151. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache/null_store.rb +43 -0
  152. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache/redis_cache_store.rb +461 -0
  153. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache/strategy/local_cache.rb +194 -0
  154. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/cache/strategy/local_cache_middleware.rb +45 -0
  155. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/callbacks.rb +845 -0
  156. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/concern.rb +148 -0
  157. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/concurrency/load_interlock_aware_monitor.rb +17 -0
  158. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/concurrency/share_lock.rb +227 -0
  159. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/configurable.rb +150 -0
  160. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext.rb +5 -0
  161. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array.rb +9 -0
  162. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array/access.rb +92 -0
  163. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array/conversions.rb +213 -0
  164. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array/extract_options.rb +31 -0
  165. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array/grouping.rb +109 -0
  166. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array/inquiry.rb +19 -0
  167. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array/prepend_and_append.rb +9 -0
  168. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array/wrap.rb +48 -0
  169. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/benchmark.rb +16 -0
  170. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/big_decimal.rb +3 -0
  171. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/big_decimal/conversions.rb +14 -0
  172. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/class.rb +4 -0
  173. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/class/attribute.rb +146 -0
  174. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/class/attribute_accessors.rb +6 -0
  175. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/class/subclasses.rb +54 -0
  176. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date.rb +7 -0
  177. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date/acts_like.rb +10 -0
  178. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date/blank.rb +14 -0
  179. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date/calculations.rb +145 -0
  180. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date/conversions.rb +96 -0
  181. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date/zones.rb +8 -0
  182. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_and_time/calculations.rb +374 -0
  183. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_and_time/compatibility.rb +16 -0
  184. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_and_time/zones.rb +41 -0
  185. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time.rb +7 -0
  186. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time/acts_like.rb +16 -0
  187. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time/blank.rb +14 -0
  188. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time/calculations.rb +211 -0
  189. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time/compatibility.rb +18 -0
  190. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time/conversions.rb +107 -0
  191. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/digest/uuid.rb +53 -0
  192. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/enumerable.rb +164 -0
  193. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/file.rb +3 -0
  194. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/file/atomic.rb +70 -0
  195. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash.rb +11 -0
  196. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/compact.rb +29 -0
  197. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/conversions.rb +263 -0
  198. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/deep_merge.rb +34 -0
  199. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/except.rb +24 -0
  200. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/indifferent_access.rb +24 -0
  201. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/keys.rb +172 -0
  202. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/reverse_merge.rb +25 -0
  203. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/slice.rb +48 -0
  204. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/transform_values.rb +32 -0
  205. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/integer.rb +5 -0
  206. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/integer/inflections.rb +31 -0
  207. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/integer/multiple.rb +12 -0
  208. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/integer/time.rb +22 -0
  209. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel.rb +6 -0
  210. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel/agnostics.rb +13 -0
  211. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel/concern.rb +14 -0
  212. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel/reporting.rb +45 -0
  213. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel/singleton_class.rb +8 -0
  214. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/load_error.rb +9 -0
  215. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/marshal.rb +24 -0
  216. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module.rb +14 -0
  217. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/aliasing.rb +31 -0
  218. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/anonymous.rb +30 -0
  219. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/attr_internal.rb +38 -0
  220. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/attribute_accessors.rb +215 -0
  221. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +150 -0
  222. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/concerning.rb +134 -0
  223. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/delegation.rb +287 -0
  224. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/deprecation.rb +25 -0
  225. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/introspection.rb +62 -0
  226. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/reachable.rb +11 -0
  227. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/redefine_method.rb +49 -0
  228. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module/remove_method.rb +17 -0
  229. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/name_error.rb +38 -0
  230. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric.rb +6 -0
  231. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric/bytes.rb +66 -0
  232. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric/conversions.rb +140 -0
  233. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric/inquiry.rb +28 -0
  234. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric/time.rb +66 -0
  235. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object.rb +16 -0
  236. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/acts_like.rb +21 -0
  237. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/blank.rb +156 -0
  238. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/conversions.rb +6 -0
  239. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/deep_dup.rb +55 -0
  240. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/duplicable.rb +156 -0
  241. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/inclusion.rb +29 -0
  242. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/instance_variables.rb +30 -0
  243. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/json.rb +227 -0
  244. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/to_param.rb +3 -0
  245. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/to_query.rb +89 -0
  246. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/try.rb +148 -0
  247. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/with_options.rb +82 -0
  248. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range.rb +7 -0
  249. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range/compare_range.rb +61 -0
  250. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range/conversions.rb +39 -0
  251. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range/each.rb +25 -0
  252. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range/include_range.rb +3 -0
  253. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range/include_time_with_zone.rb +23 -0
  254. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range/overlaps.rb +10 -0
  255. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/regexp.rb +11 -0
  256. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/securerandom.rb +25 -0
  257. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string.rb +15 -0
  258. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/access.rb +106 -0
  259. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/behavior.rb +8 -0
  260. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/conversions.rb +59 -0
  261. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/exclude.rb +13 -0
  262. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/filters.rb +104 -0
  263. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/indent.rb +45 -0
  264. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/inflections.rb +254 -0
  265. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/inquiry.rb +15 -0
  266. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/multibyte.rb +57 -0
  267. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/output_safety.rb +258 -0
  268. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/starts_ends_with.rb +6 -0
  269. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/strip.rb +25 -0
  270. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string/zones.rb +16 -0
  271. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time.rb +7 -0
  272. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time/acts_like.rb +10 -0
  273. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time/calculations.rb +315 -0
  274. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time/compatibility.rb +16 -0
  275. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time/conversions.rb +72 -0
  276. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time/zones.rb +113 -0
  277. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/core_ext/uri.rb +24 -0
  278. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/current_attributes.rb +195 -0
  279. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/dependencies.rb +753 -0
  280. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/dependencies/autoload.rb +79 -0
  281. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/dependencies/interlock.rb +57 -0
  282. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/deprecation.rb +46 -0
  283. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/deprecation/behaviors.rb +109 -0
  284. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/deprecation/constant_accessor.rb +52 -0
  285. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/deprecation/instance_delegator.rb +39 -0
  286. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/deprecation/method_wrappers.rb +90 -0
  287. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/deprecation/proxy_wrappers.rb +154 -0
  288. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/deprecation/reporting.rb +114 -0
  289. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/descendants_tracker.rb +62 -0
  290. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/digest.rb +20 -0
  291. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/duration.rb +432 -0
  292. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/duration/iso8601_parser.rb +125 -0
  293. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/duration/iso8601_serializer.rb +55 -0
  294. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/encrypted_configuration.rb +49 -0
  295. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/encrypted_file.rb +99 -0
  296. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/evented_file_update_checker.rb +205 -0
  297. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/execution_wrapper.rb +128 -0
  298. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/executor.rb +8 -0
  299. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/file_update_checker.rb +163 -0
  300. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/gem_version.rb +17 -0
  301. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/gzip.rb +38 -0
  302. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/hash_with_indifferent_access.rb +395 -0
  303. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/i18n.rb +15 -0
  304. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/i18n_railtie.rb +118 -0
  305. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/inflections.rb +72 -0
  306. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/inflector.rb +9 -0
  307. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/inflector/inflections.rb +260 -0
  308. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/inflector/methods.rb +410 -0
  309. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/inflector/transliterate.rb +118 -0
  310. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/json.rb +4 -0
  311. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/json/decoding.rb +76 -0
  312. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/json/encoding.rb +130 -0
  313. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/key_generator.rb +73 -0
  314. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/lazy_load_hooks.rb +78 -0
  315. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/locale/en.yml +135 -0
  316. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/log_subscriber.rb +112 -0
  317. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/log_subscriber/test_helper.rb +106 -0
  318. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/logger.rb +108 -0
  319. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/logger_silence.rb +29 -0
  320. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/logger_thread_safe_level.rb +33 -0
  321. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/message_encryptor.rb +229 -0
  322. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/message_verifier.rb +205 -0
  323. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/messages/metadata.rb +71 -0
  324. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/messages/rotation_configuration.rb +22 -0
  325. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/messages/rotator.rb +56 -0
  326. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/multibyte.rb +23 -0
  327. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/multibyte/chars.rb +235 -0
  328. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/multibyte/unicode.rb +394 -0
  329. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/notifications.rb +216 -0
  330. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/notifications/fanout.rb +159 -0
  331. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/notifications/instrumenter.rb +93 -0
  332. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper.rb +371 -0
  333. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_converter.rb +184 -0
  334. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_to_currency_converter.rb +46 -0
  335. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_to_delimited_converter.rb +29 -0
  336. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_to_human_converter.rb +68 -0
  337. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_to_human_size_converter.rb +59 -0
  338. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_to_percentage_converter.rb +14 -0
  339. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_to_phone_converter.rb +58 -0
  340. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/number_to_rounded_converter.rb +54 -0
  341. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/number_helper/rounding_helper.rb +66 -0
  342. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/option_merger.rb +27 -0
  343. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/ordered_hash.rb +50 -0
  344. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/ordered_options.rb +85 -0
  345. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/per_thread_registry.rb +60 -0
  346. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/proxy_object.rb +15 -0
  347. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/rails.rb +35 -0
  348. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/railtie.rb +80 -0
  349. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/reloader.rb +131 -0
  350. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/rescuable.rb +174 -0
  351. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/security_utils.rb +31 -0
  352. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/string_inquirer.rb +34 -0
  353. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/subscriber.rb +130 -0
  354. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/tagged_logging.rb +79 -0
  355. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/test_case.rb +72 -0
  356. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/assertions.rb +214 -0
  357. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/autorun.rb +7 -0
  358. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/constant_lookup.rb +51 -0
  359. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/declarative.rb +28 -0
  360. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/deprecation.rb +39 -0
  361. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/file_fixtures.rb +36 -0
  362. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/isolation.rb +110 -0
  363. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/method_call_assertions.rb +43 -0
  364. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/setup_and_teardown.rb +55 -0
  365. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/stream.rb +44 -0
  366. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/tagged_logging.rb +27 -0
  367. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/testing/time_helpers.rb +200 -0
  368. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/time.rb +20 -0
  369. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/time_with_zone.rb +551 -0
  370. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/values/time_zone.rb +565 -0
  371. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/values/unicode_tables.dat +0 -0
  372. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/version.rb +10 -0
  373. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/xml_mini.rb +209 -0
  374. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/xml_mini/jdom.rb +183 -0
  375. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/xml_mini/libxml.rb +80 -0
  376. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/xml_mini/libxmlsax.rb +83 -0
  377. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/xml_mini/nokogiri.rb +83 -0
  378. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/xml_mini/nokogirisax.rb +86 -0
  379. data/vendor/bundle/ruby/2.5.0/gems/activesupport-5.2.3/lib/active_support/xml_mini/rexml.rb +130 -0
  380. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/CHANGELOG +18 -0
  381. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/LICENSE +184 -0
  382. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/Manifest +24 -0
  383. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/README +67 -0
  384. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/allison.gemspec +48 -0
  385. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/bin/allison +9 -0
  386. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/BODY +570 -0
  387. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/CLASS_INDEX +4 -0
  388. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/CLASS_PAGE +1 -0
  389. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/FILE_INDEX +4 -0
  390. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/FILE_PAGE +1 -0
  391. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/FONTS +1 -0
  392. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/FR_INDEX_BODY +1 -0
  393. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/INDEX +1 -0
  394. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/JAVASCRIPT +316 -0
  395. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/METHOD_INDEX +4 -0
  396. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/METHOD_LIST +1 -0
  397. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/SRC_PAGE +1 -0
  398. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/cache/STYLE +320 -0
  399. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/contrib/Rakefile +147 -0
  400. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/contrib/rdoc_patch.rb +252 -0
  401. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/contrib/rdoc_patch_test.rb +95 -0
  402. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/lib/allison.css +314 -0
  403. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/lib/allison.js +316 -0
  404. data/vendor/bundle/ruby/2.5.0/gems/allison-2.0.3/lib/allison.rb +276 -0
  405. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/CHANGES +107 -0
  406. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/MIT-LICENSE +20 -0
  407. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/README.md +258 -0
  408. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/Rakefile +195 -0
  409. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/doc/jamis.rb +591 -0
  410. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/doc/releases/builder-1.2.4.rdoc +31 -0
  411. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/doc/releases/builder-2.0.0.rdoc +46 -0
  412. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/doc/releases/builder-2.1.1.rdoc +58 -0
  413. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/blankslate.rb +137 -0
  414. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/builder.rb +13 -0
  415. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/builder/blankslate.rb +23 -0
  416. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/builder/version.rb +8 -0
  417. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/builder/xchar.rb +197 -0
  418. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/builder/xmlbase.rb +199 -0
  419. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/builder/xmlevents.rb +63 -0
  420. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/lib/builder/xmlmarkup.rb +339 -0
  421. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/rakelib/publish.rake +20 -0
  422. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/rakelib/tags.rake +62 -0
  423. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/rakelib/testing.rake +7 -0
  424. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/helper.rb +12 -0
  425. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/performance.rb +41 -0
  426. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/preload.rb +39 -0
  427. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/test_blankslate.rb +213 -0
  428. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/test_eventbuilder.rb +150 -0
  429. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/test_markupbuilder.rb +611 -0
  430. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/test_method_caching.rb +62 -0
  431. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/test_namecollision.rb +39 -0
  432. data/vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/test/test_xchar.rb +78 -0
  433. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/CHANGELOG.md +478 -0
  434. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/Gemfile +41 -0
  435. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/LICENSE.md +23 -0
  436. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/README.md +381 -0
  437. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/Rakefile +327 -0
  438. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/ConcurrentRubyService.java +17 -0
  439. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +175 -0
  440. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/JRubyMapBackendLibrary.java +248 -0
  441. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicBooleanLibrary.java +93 -0
  442. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicFixnumLibrary.java +113 -0
  443. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaSemaphoreLibrary.java +159 -0
  444. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java +307 -0
  445. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMap.java +31 -0
  446. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java +3863 -0
  447. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/LongAdder.java +203 -0
  448. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/Striped64.java +342 -0
  449. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
  450. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/LongAdder.java +204 -0
  451. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/Striped64.java +291 -0
  452. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166y/ThreadLocalRandom.java +199 -0
  453. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent-ruby.rb +1 -0
  454. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent.rb +134 -0
  455. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/agent.rb +587 -0
  456. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/array.rb +66 -0
  457. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/async.rb +459 -0
  458. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atom.rb +222 -0
  459. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/abstract_thread_local_var.rb +66 -0
  460. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/atomic_boolean.rb +126 -0
  461. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/atomic_fixnum.rb +143 -0
  462. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/atomic_markable_reference.rb +164 -0
  463. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/atomic_reference.rb +204 -0
  464. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/count_down_latch.rb +100 -0
  465. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/cyclic_barrier.rb +128 -0
  466. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/event.rb +109 -0
  467. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/java_count_down_latch.rb +42 -0
  468. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/java_thread_local_var.rb +37 -0
  469. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/mutex_atomic_boolean.rb +62 -0
  470. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/mutex_atomic_fixnum.rb +75 -0
  471. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/mutex_count_down_latch.rb +44 -0
  472. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/mutex_semaphore.rb +115 -0
  473. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/read_write_lock.rb +254 -0
  474. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/reentrant_read_write_lock.rb +379 -0
  475. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/ruby_thread_local_var.rb +161 -0
  476. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/semaphore.rb +145 -0
  477. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/thread_local_var.rb +104 -0
  478. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic_reference/mutex_atomic.rb +56 -0
  479. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic_reference/numeric_cas_wrapper.rb +28 -0
  480. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomics.rb +10 -0
  481. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/copy_on_notify_observer_set.rb +107 -0
  482. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/copy_on_write_observer_set.rb +111 -0
  483. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/java_non_concurrent_priority_queue.rb +84 -0
  484. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/lock_free_stack.rb +158 -0
  485. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/map/atomic_reference_map_backend.rb +927 -0
  486. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/map/mri_map_backend.rb +66 -0
  487. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/map/non_concurrent_map_backend.rb +140 -0
  488. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/map/synchronized_map_backend.rb +82 -0
  489. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/non_concurrent_priority_queue.rb +143 -0
  490. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/ruby_non_concurrent_priority_queue.rb +150 -0
  491. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concern/deprecation.rb +34 -0
  492. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concern/dereferenceable.rb +73 -0
  493. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concern/logging.rb +32 -0
  494. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concern/obligation.rb +220 -0
  495. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concern/observable.rb +110 -0
  496. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concurrent_ruby.jar +0 -0
  497. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/configuration.rb +184 -0
  498. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/constants.rb +8 -0
  499. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/dataflow.rb +81 -0
  500. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/delay.rb +199 -0
  501. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/errors.rb +69 -0
  502. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/exchanger.rb +352 -0
  503. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/abstract_executor_service.rb +134 -0
  504. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/cached_thread_pool.rb +62 -0
  505. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/executor_service.rb +185 -0
  506. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/fixed_thread_pool.rb +206 -0
  507. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/immediate_executor.rb +66 -0
  508. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/indirect_immediate_executor.rb +44 -0
  509. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/java_executor_service.rb +91 -0
  510. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/java_single_thread_executor.rb +29 -0
  511. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/java_thread_pool_executor.rb +123 -0
  512. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/ruby_executor_service.rb +78 -0
  513. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/ruby_single_thread_executor.rb +22 -0
  514. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/ruby_thread_pool_executor.rb +362 -0
  515. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/safe_task_executor.rb +35 -0
  516. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/serial_executor_service.rb +34 -0
  517. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/serialized_execution.rb +107 -0
  518. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/serialized_execution_delegator.rb +28 -0
  519. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/simple_executor_service.rb +100 -0
  520. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/single_thread_executor.rb +56 -0
  521. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/thread_pool_executor.rb +87 -0
  522. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/timer_set.rb +173 -0
  523. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executors.rb +20 -0
  524. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/future.rb +141 -0
  525. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/hash.rb +59 -0
  526. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/immutable_struct.rb +93 -0
  527. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/ivar.rb +207 -0
  528. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/map.rb +337 -0
  529. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/maybe.rb +229 -0
  530. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/mutable_struct.rb +229 -0
  531. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/mvar.rb +242 -0
  532. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/options.rb +42 -0
  533. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/promise.rb +579 -0
  534. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb +2167 -0
  535. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/re_include.rb +58 -0
  536. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/scheduled_task.rb +318 -0
  537. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/set.rb +66 -0
  538. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/settable_struct.rb +129 -0
  539. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization.rb +30 -0
  540. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/abstract_lockable_object.rb +98 -0
  541. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/abstract_object.rb +24 -0
  542. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/abstract_struct.rb +160 -0
  543. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/condition.rb +60 -0
  544. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/jruby_lockable_object.rb +13 -0
  545. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/jruby_object.rb +45 -0
  546. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/lock.rb +36 -0
  547. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/lockable_object.rb +74 -0
  548. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/mri_object.rb +44 -0
  549. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/mutex_lockable_object.rb +76 -0
  550. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/object.rb +183 -0
  551. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/rbx_lockable_object.rb +65 -0
  552. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/rbx_object.rb +49 -0
  553. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/truffleruby_object.rb +47 -0
  554. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/volatile.rb +36 -0
  555. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/synchronized_delegator.rb +50 -0
  556. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util.rb +16 -0
  557. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util/adder.rb +74 -0
  558. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util/cheap_lockable.rb +118 -0
  559. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util/data_structures.rb +63 -0
  560. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util/power_of_two_tuple.rb +38 -0
  561. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util/striped64.rb +246 -0
  562. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util/volatile.rb +75 -0
  563. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util/xor_shift_random.rb +50 -0
  564. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/timer_task.rb +334 -0
  565. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/tuple.rb +86 -0
  566. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/tvar.rb +258 -0
  567. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/at_exit.rb +97 -0
  568. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/engine.rb +56 -0
  569. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/monotonic_time.rb +58 -0
  570. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/native_extension_loader.rb +79 -0
  571. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/native_integer.rb +53 -0
  572. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/processor_counter.rb +158 -0
  573. data/vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.5/lib/concurrent/version.rb +3 -0
  574. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/CHANGELOG +113 -0
  575. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/LICENSE +184 -0
  576. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/MIT-LICENSE +21 -0
  577. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/Manifest +19 -0
  578. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/README.rdoc +97 -0
  579. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/Rakefile +15 -0
  580. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/echoe.gemspec +45 -0
  581. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/echoe.pem +21 -0
  582. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/lib/echoe.rb +793 -0
  583. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/lib/echoe/extensions.rb +61 -0
  584. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/lib/echoe/platform.rb +37 -0
  585. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/lib/echoe/rubygems.rb +41 -0
  586. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/vendor/rake/MIT-LICENSE +21 -0
  587. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/compositepublisher.rb +24 -0
  588. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/ftptools.rb +153 -0
  589. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/publisher.rb +75 -0
  590. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/rubyforgepublisher.rb +18 -0
  591. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/sshpublisher.rb +43 -0
  592. data/vendor/bundle/ruby/2.5.0/gems/echoe-4.6.6/vendor/rake/lib/rake/contrib/sys.rb +209 -0
  593. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/MIT-LICENSE +20 -0
  594. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/README.md +125 -0
  595. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n.rb +398 -0
  596. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend.rb +21 -0
  597. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/base.rb +284 -0
  598. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/cache.rb +113 -0
  599. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/cache_file.rb +36 -0
  600. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/cascade.rb +56 -0
  601. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/chain.rb +127 -0
  602. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/fallbacks.rb +84 -0
  603. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/flatten.rb +115 -0
  604. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/gettext.rb +85 -0
  605. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/interpolation_compiler.rb +123 -0
  606. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/key_value.rb +206 -0
  607. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/memoize.rb +54 -0
  608. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/metadata.rb +71 -0
  609. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/pluralization.rb +55 -0
  610. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/simple.rb +111 -0
  611. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/backend/transliterator.rb +108 -0
  612. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/config.rb +165 -0
  613. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/core_ext/hash.rb +47 -0
  614. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/exceptions.rb +111 -0
  615. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/gettext.rb +28 -0
  616. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/gettext/helpers.rb +75 -0
  617. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/gettext/po_parser.rb +329 -0
  618. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/interpolate/ruby.rb +39 -0
  619. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/locale.rb +8 -0
  620. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/locale/fallbacks.rb +96 -0
  621. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/locale/tag.rb +28 -0
  622. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/locale/tag/parents.rb +22 -0
  623. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/locale/tag/rfc4646.rb +74 -0
  624. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/locale/tag/simple.rb +39 -0
  625. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/middleware.rb +17 -0
  626. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests.rb +14 -0
  627. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/basics.rb +60 -0
  628. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/defaults.rb +52 -0
  629. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/interpolation.rb +159 -0
  630. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/link.rb +56 -0
  631. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/localization.rb +19 -0
  632. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/localization/date.rb +117 -0
  633. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/localization/date_time.rb +103 -0
  634. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/localization/procs.rb +116 -0
  635. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/localization/time.rb +103 -0
  636. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/lookup.rb +81 -0
  637. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/pluralization.rb +35 -0
  638. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/tests/procs.rb +55 -0
  639. data/vendor/bundle/ruby/2.5.0/gems/i18n-1.6.0/lib/i18n/version.rb +5 -0
  640. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/CHANGES.md +391 -0
  641. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/Gemfile +14 -0
  642. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/README-json-jruby.md +33 -0
  643. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/README.md +409 -0
  644. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/Rakefile +408 -0
  645. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/VERSION +1 -0
  646. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/fbuffer/fbuffer.h +187 -0
  647. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/generator/depend +1 -0
  648. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/generator/extconf.rb +4 -0
  649. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/generator/generator.c +1444 -0
  650. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/generator/generator.h +171 -0
  651. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/parser/depend +1 -0
  652. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/parser/extconf.rb +6 -0
  653. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/parser/parser.c +2131 -0
  654. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/parser/parser.h +91 -0
  655. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/ext/parser/parser.rl +891 -0
  656. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/ext/json/extconf.rb +2 -0
  657. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/install.rb +23 -0
  658. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/ByteListTranscoder.java +166 -0
  659. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/Generator.java +443 -0
  660. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/GeneratorMethods.java +231 -0
  661. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/GeneratorService.java +42 -0
  662. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/GeneratorState.java +490 -0
  663. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/OptionsReader.java +113 -0
  664. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/Parser.java +2362 -0
  665. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/Parser.rl +893 -0
  666. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/ParserService.java +34 -0
  667. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/RuntimeInfo.java +116 -0
  668. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/StringDecoder.java +166 -0
  669. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/StringEncoder.java +111 -0
  670. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/java/src/json/ext/Utils.java +88 -0
  671. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/json-java.gemspec +38 -0
  672. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/json.gemspec +0 -0
  673. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/json_pure.gemspec +38 -0
  674. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json.rb +63 -0
  675. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/bigdecimal.rb +29 -0
  676. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/complex.rb +29 -0
  677. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/core.rb +12 -0
  678. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/date.rb +34 -0
  679. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/date_time.rb +50 -0
  680. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/exception.rb +31 -0
  681. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/ostruct.rb +31 -0
  682. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/range.rb +29 -0
  683. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/rational.rb +28 -0
  684. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/regexp.rb +30 -0
  685. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/set.rb +29 -0
  686. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/struct.rb +30 -0
  687. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/symbol.rb +25 -0
  688. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/add/time.rb +38 -0
  689. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/common.rb +456 -0
  690. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/ext.rb +15 -0
  691. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/generic_object.rb +71 -0
  692. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/pure.rb +15 -0
  693. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/pure/generator.rb +458 -0
  694. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/pure/parser.rb +311 -0
  695. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/lib/json/version.rb +9 -0
  696. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/references/rfc7159.txt +899 -0
  697. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail10.json +1 -0
  698. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail11.json +1 -0
  699. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail12.json +1 -0
  700. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail13.json +1 -0
  701. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail14.json +1 -0
  702. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail18.json +1 -0
  703. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail19.json +1 -0
  704. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail2.json +1 -0
  705. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail20.json +1 -0
  706. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail21.json +1 -0
  707. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail22.json +1 -0
  708. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail23.json +1 -0
  709. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail24.json +1 -0
  710. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail25.json +1 -0
  711. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail27.json +2 -0
  712. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail28.json +2 -0
  713. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail3.json +1 -0
  714. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail4.json +1 -0
  715. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail5.json +1 -0
  716. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail6.json +1 -0
  717. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail7.json +1 -0
  718. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail8.json +1 -0
  719. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/fail9.json +1 -0
  720. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/obsolete_fail1.json +1 -0
  721. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/pass1.json +56 -0
  722. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/pass15.json +1 -0
  723. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/pass16.json +1 -0
  724. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/pass17.json +1 -0
  725. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/pass2.json +1 -0
  726. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/pass26.json +1 -0
  727. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/fixtures/pass3.json +6 -0
  728. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_addition_test.rb +203 -0
  729. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_common_interface_test.rb +126 -0
  730. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_encoding_test.rb +107 -0
  731. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_ext_parser_test.rb +15 -0
  732. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_fixtures_test.rb +32 -0
  733. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_generator_test.rb +377 -0
  734. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_generic_object_test.rb +82 -0
  735. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_parser_test.rb +472 -0
  736. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/json_string_matching_test.rb +38 -0
  737. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tests/test_helper.rb +17 -0
  738. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tools/diff.sh +18 -0
  739. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tools/fuzz.rb +131 -0
  740. data/vendor/bundle/ruby/2.5.0/gems/json_pure-2.2.0/tools/server.rb +62 -0
  741. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/History.rdoc +1310 -0
  742. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/Manifest.txt +26 -0
  743. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/README.rdoc +746 -0
  744. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/Rakefile +86 -0
  745. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/design_rationale.rb +52 -0
  746. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/hoe/minitest.rb +32 -0
  747. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest.rb +987 -0
  748. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/assertions.rb +693 -0
  749. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/autorun.rb +13 -0
  750. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/benchmark.rb +455 -0
  751. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/expectations.rb +284 -0
  752. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/hell.rb +11 -0
  753. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/mock.rb +240 -0
  754. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/parallel.rb +70 -0
  755. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/pride.rb +4 -0
  756. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/pride_plugin.rb +142 -0
  757. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/spec.rb +331 -0
  758. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/test.rb +220 -0
  759. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/lib/minitest/unit.rb +45 -0
  760. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/test/minitest/metametameta.rb +102 -0
  761. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/test/minitest/test_minitest_benchmark.rb +137 -0
  762. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/test/minitest/test_minitest_mock.rb +874 -0
  763. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/test/minitest/test_minitest_reporter.rb +299 -0
  764. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/test/minitest/test_minitest_spec.rb +987 -0
  765. data/vendor/bundle/ruby/2.5.0/gems/minitest-5.11.3/test/minitest/test_minitest_test.rb +2142 -0
  766. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/CONTRIBUTING.rdoc +43 -0
  767. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/Gemfile +3 -0
  768. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/History.rdoc +2333 -0
  769. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/MIT-LICENSE +21 -0
  770. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/README.rdoc +156 -0
  771. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/Rakefile +41 -0
  772. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/bin/bundle +105 -0
  773. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/bin/console +7 -0
  774. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/bin/rake +29 -0
  775. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/bin/rdoc +29 -0
  776. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/bin/rubocop +29 -0
  777. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/bin/setup +6 -0
  778. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/command_line_usage.rdoc +158 -0
  779. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/example/Rakefile1 +38 -0
  780. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/example/Rakefile2 +35 -0
  781. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/example/a.c +6 -0
  782. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/example/b.c +6 -0
  783. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/example/main.c +11 -0
  784. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/glossary.rdoc +42 -0
  785. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/jamis.rb +592 -0
  786. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/proto_rake.rdoc +127 -0
  787. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/rake.1 +156 -0
  788. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/rakefile.rdoc +622 -0
  789. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/doc/rational.rdoc +151 -0
  790. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/exe/rake +27 -0
  791. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake.rb +71 -0
  792. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/application.rb +824 -0
  793. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/backtrace.rb +24 -0
  794. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/clean.rb +78 -0
  795. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/cloneable.rb +17 -0
  796. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/cpu_counter.rb +107 -0
  797. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/default_loader.rb +15 -0
  798. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/dsl_definition.rb +195 -0
  799. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/early_time.rb +22 -0
  800. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/ext/core.rb +26 -0
  801. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/ext/string.rb +176 -0
  802. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/file_creation_task.rb +25 -0
  803. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/file_list.rb +435 -0
  804. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/file_task.rb +54 -0
  805. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/file_utils.rb +137 -0
  806. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/file_utils_ext.rb +145 -0
  807. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/invocation_chain.rb +57 -0
  808. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/invocation_exception_mixin.rb +17 -0
  809. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/late_time.rb +18 -0
  810. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/linked_list.rb +112 -0
  811. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/loaders/makefile.rb +54 -0
  812. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/multi_task.rb +14 -0
  813. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/name_space.rb +38 -0
  814. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/packagetask.rb +207 -0
  815. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/phony.rb +16 -0
  816. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/private_reader.rb +21 -0
  817. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/promise.rb +100 -0
  818. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/pseudo_status.rb +30 -0
  819. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/rake_module.rb +67 -0
  820. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/rake_test_loader.rb +27 -0
  821. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/rule_recursion_overflow_error.rb +20 -0
  822. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/scope.rb +43 -0
  823. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/task.rb +413 -0
  824. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/task_argument_error.rb +8 -0
  825. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/task_arguments.rb +109 -0
  826. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/task_manager.rb +323 -0
  827. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/tasklib.rb +12 -0
  828. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/testtask.rb +224 -0
  829. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/thread_history_display.rb +49 -0
  830. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/thread_pool.rb +163 -0
  831. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/trace_output.rb +23 -0
  832. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/version.rb +10 -0
  833. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/lib/rake/win32.rb +51 -0
  834. data/vendor/bundle/ruby/2.5.0/gems/rake-12.3.2/rake.gemspec +42 -0
  835. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/CONTRIBUTING.rdoc +220 -0
  836. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/CVE-2013-0256.rdoc +49 -0
  837. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/ExampleMarkdown.md +37 -0
  838. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/ExampleRDoc.rdoc +208 -0
  839. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/Gemfile +3 -0
  840. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/History.rdoc +1666 -0
  841. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/LEGAL.rdoc +50 -0
  842. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/LICENSE.rdoc +57 -0
  843. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/README.rdoc +130 -0
  844. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/RI.rdoc +57 -0
  845. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/Rakefile +91 -0
  846. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/TODO.rdoc +59 -0
  847. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/appveyor.yml +36 -0
  848. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/bin/console +7 -0
  849. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/bin/setup +6 -0
  850. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/exe/rdoc +44 -0
  851. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/exe/ri +12 -0
  852. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc.rb +180 -0
  853. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/alias.rb +112 -0
  854. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/anon_class.rb +11 -0
  855. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/any_method.rb +316 -0
  856. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/attr.rb +176 -0
  857. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/class_module.rb +802 -0
  858. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/code_object.rb +421 -0
  859. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/code_objects.rb +6 -0
  860. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/comment.rb +239 -0
  861. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/constant.rb +187 -0
  862. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/context.rb +1258 -0
  863. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/context/section.rb +245 -0
  864. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/cross_reference.rb +202 -0
  865. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/encoding.rb +136 -0
  866. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/erb_partial.rb +19 -0
  867. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/erbio.rb +42 -0
  868. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/extend.rb +10 -0
  869. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator.rb +51 -0
  870. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/darkfish.rb +790 -0
  871. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/json_index.rb +300 -0
  872. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/markup.rb +160 -0
  873. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/pot.rb +98 -0
  874. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/pot/message_extractor.rb +68 -0
  875. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/pot/po.rb +84 -0
  876. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/pot/po_entry.rb +141 -0
  877. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/ri.rb +31 -0
  878. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_footer.rhtml +5 -0
  879. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_head.rhtml +20 -0
  880. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml +19 -0
  881. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml +9 -0
  882. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml +15 -0
  883. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml +9 -0
  884. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml +15 -0
  885. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtml +15 -0
  886. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml +12 -0
  887. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml +11 -0
  888. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml +12 -0
  889. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml +11 -0
  890. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_search.rhtml +14 -0
  891. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml +11 -0
  892. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml +18 -0
  893. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/class.rhtml +172 -0
  894. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/css/fonts.css +167 -0
  895. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/css/rdoc.css +590 -0
  896. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttf +0 -0
  897. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttf +0 -0
  898. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttf +0 -0
  899. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttf +0 -0
  900. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttf +0 -0
  901. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttf +0 -0
  902. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/add.png +0 -0
  903. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/arrow_up.png +0 -0
  904. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/brick.png +0 -0
  905. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/brick_link.png +0 -0
  906. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/bug.png +0 -0
  907. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/bullet_black.png +0 -0
  908. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png +0 -0
  909. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png +0 -0
  910. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/date.png +0 -0
  911. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/delete.png +0 -0
  912. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/find.png +0 -0
  913. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif +0 -0
  914. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/macFFBgHack.png +0 -0
  915. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/package.png +0 -0
  916. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/page_green.png +0 -0
  917. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/page_white_text.png +0 -0
  918. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/page_white_width.png +0 -0
  919. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/plugin.png +0 -0
  920. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/ruby.png +0 -0
  921. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/tag_blue.png +0 -0
  922. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/tag_green.png +0 -0
  923. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/transparent.png +0 -0
  924. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/wrench.png +0 -0
  925. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/wrench_orange.png +0 -0
  926. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/images/zoom.png +0 -0
  927. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/index.rhtml +23 -0
  928. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/js/darkfish.js +161 -0
  929. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/js/jquery.js +4 -0
  930. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/js/search.js +109 -0
  931. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/page.rhtml +18 -0
  932. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/servlet_not_found.rhtml +18 -0
  933. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/servlet_root.rhtml +63 -0
  934. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/darkfish/table_of_contents.rhtml +58 -0
  935. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/json_index/js/navigation.js +141 -0
  936. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/generator/template/json_index/js/searcher.js +229 -0
  937. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/ghost_method.rb +7 -0
  938. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/i18n.rb +10 -0
  939. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/i18n/locale.rb +102 -0
  940. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/i18n/text.rb +126 -0
  941. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/include.rb +10 -0
  942. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/known_classes.rb +73 -0
  943. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markdown.kpeg +1219 -0
  944. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markdown/entities.rb +2132 -0
  945. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markdown/literals.kpeg +23 -0
  946. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup.rb +868 -0
  947. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/attr_changer.rb +23 -0
  948. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/attr_span.rb +30 -0
  949. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/attribute_manager.rb +344 -0
  950. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/attributes.rb +71 -0
  951. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/blank_line.rb +28 -0
  952. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/block_quote.rb +15 -0
  953. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/document.rb +165 -0
  954. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/formatter.rb +266 -0
  955. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/formatter_test_case.rb +764 -0
  956. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/hard_break.rb +32 -0
  957. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/heading.rb +79 -0
  958. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/include.rb +43 -0
  959. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/indented_paragraph.rb +48 -0
  960. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/list.rb +102 -0
  961. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/list_item.rb +100 -0
  962. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/paragraph.rb +29 -0
  963. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/parser.rb +559 -0
  964. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/pre_process.rb +296 -0
  965. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/raw.rb +70 -0
  966. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/regexp_handling.rb +41 -0
  967. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/rule.rb +21 -0
  968. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/text_formatter_test_case.rb +115 -0
  969. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_ansi.rb +94 -0
  970. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_bs.rb +77 -0
  971. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_html.rb +404 -0
  972. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_html_crossref.rb +164 -0
  973. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_html_snippet.rb +285 -0
  974. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_joined_paragraph.rb +46 -0
  975. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_label.rb +75 -0
  976. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_markdown.rb +192 -0
  977. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_rdoc.rb +334 -0
  978. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_table_of_contents.rb +88 -0
  979. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_test.rb +70 -0
  980. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/to_tt_only.rb +121 -0
  981. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/markup/verbatim.rb +84 -0
  982. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/meta_method.rb +7 -0
  983. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/method_attr.rb +419 -0
  984. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/mixin.rb +121 -0
  985. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/normal_class.rb +93 -0
  986. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/normal_module.rb +74 -0
  987. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/options.rb +1235 -0
  988. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser.rb +277 -0
  989. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/c.rb +1269 -0
  990. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/changelog.rb +204 -0
  991. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/markdown.rb +24 -0
  992. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/rd.rb +23 -0
  993. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/ripper_state_lex.rb +589 -0
  994. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/ruby.rb +2317 -0
  995. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/ruby_tools.rb +167 -0
  996. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/simple.rb +61 -0
  997. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/parser/text.rb +12 -0
  998. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/rd.rb +100 -0
  999. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/rd/block_parser.ry +639 -0
  1000. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/rd/inline.rb +72 -0
  1001. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/rd/inline_parser.ry +593 -0
  1002. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/rdoc.rb +566 -0
  1003. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/require.rb +52 -0
  1004. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/ri.rb +21 -0
  1005. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/ri/driver.rb +1568 -0
  1006. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/ri/formatter.rb +6 -0
  1007. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/ri/paths.rb +185 -0
  1008. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/ri/store.rb +7 -0
  1009. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/ri/task.rb +71 -0
  1010. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/rubygems_hook.rb +246 -0
  1011. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/servlet.rb +443 -0
  1012. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/single_class.rb +26 -0
  1013. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/stats.rb +462 -0
  1014. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/stats/normal.rb +58 -0
  1015. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/stats/quiet.rb +60 -0
  1016. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/stats/verbose.rb +46 -0
  1017. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/store.rb +987 -0
  1018. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/task.rb +329 -0
  1019. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/text.rb +298 -0
  1020. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/token_stream.rb +114 -0
  1021. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/tom_doc.rb +264 -0
  1022. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/top_level.rb +289 -0
  1023. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/lib/rdoc/version.rb +8 -0
  1024. data/vendor/bundle/ruby/2.5.0/gems/rdoc-6.1.1/rdoc.gemspec +62 -0
  1025. data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/History.txt +128 -0
  1026. data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/Manifest.txt +9 -0
  1027. data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/README.txt +55 -0
  1028. data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/Rakefile +40 -0
  1029. data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/bin/rubyforge +222 -0
  1030. data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/lib/rubyforge.rb +389 -0
  1031. data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/lib/rubyforge/client.rb +124 -0
  1032. data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/test/test_rubyforge.rb +329 -0
  1033. data/vendor/bundle/ruby/2.5.0/gems/rubyforge-2.0.4/test/test_rubyforge_client.rb +57 -0
  1034. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/Gemfile +20 -0
  1035. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/LICENSE +144 -0
  1036. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/README.md +60 -0
  1037. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/Rakefile +62 -0
  1038. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/examples/bench_cache.rb +35 -0
  1039. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/JRubyCacheBackendLibrary.java +245 -0
  1040. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMap.java +31 -0
  1041. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMapV8.java +3863 -0
  1042. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/LongAdder.java +203 -0
  1043. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/Striped64.java +342 -0
  1044. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
  1045. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/LongAdder.java +204 -0
  1046. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/Striped64.java +291 -0
  1047. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/org/jruby/ext/thread_safe/jsr166y/ThreadLocalRandom.java +199 -0
  1048. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/ext/thread_safe/JrubyCacheBackendService.java +15 -0
  1049. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe.rb +65 -0
  1050. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/atomic_reference_cache_backend.rb +908 -0
  1051. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/cache.rb +161 -0
  1052. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/mri_cache_backend.rb +60 -0
  1053. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/non_concurrent_cache_backend.rb +135 -0
  1054. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_cache_backend.rb +77 -0
  1055. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_delegator.rb +43 -0
  1056. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util.rb +16 -0
  1057. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/adder.rb +62 -0
  1058. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/atomic_reference.rb +44 -0
  1059. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/cheap_lockable.rb +106 -0
  1060. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/power_of_two_tuple.rb +26 -0
  1061. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/striped64.rb +222 -0
  1062. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/volatile.rb +64 -0
  1063. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/volatile_tuple.rb +46 -0
  1064. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/util/xor_shift_random.rb +41 -0
  1065. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/lib/thread_safe/version.rb +21 -0
  1066. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/spec_helper.rb +31 -0
  1067. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/src/thread_safe/SecurityManager.java +21 -0
  1068. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/support/threads.rb +1 -0
  1069. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/support/threadsafe_test.rb +75 -0
  1070. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/thread_safe/array_spec.rb +18 -0
  1071. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/thread_safe/cache_loops_spec.rb +507 -0
  1072. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/thread_safe/cache_spec.rb +943 -0
  1073. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/thread_safe/hash_spec.rb +17 -0
  1074. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/thread_safe/no_unsafe_spec.rb +27 -0
  1075. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/spec/thread_safe/synchronized_delegator_spec.rb +85 -0
  1076. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/tasks/update_doc.rake +45 -0
  1077. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/thread_safe.gemspec +26 -0
  1078. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/yard-template/default/fulldoc/html/css/common.css +125 -0
  1079. data/vendor/bundle/ruby/2.5.0/gems/thread_safe-0.3.6/yard-template/default/layout/html/footer.erb +16 -0
  1080. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/CHANGES.md +786 -0
  1081. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/LICENSE +19 -0
  1082. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/README.md +151 -0
  1083. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/Rakefile +107 -0
  1084. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo.rb +40 -0
  1085. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/country.rb +196 -0
  1086. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/country_index_definition.rb +31 -0
  1087. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/country_info.rb +42 -0
  1088. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/country_timezone.rb +135 -0
  1089. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/data_source.rb +190 -0
  1090. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/data_timezone.rb +58 -0
  1091. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/data_timezone_info.rb +55 -0
  1092. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/info_timezone.rb +30 -0
  1093. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/linked_timezone.rb +63 -0
  1094. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/linked_timezone_info.rb +26 -0
  1095. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/offset_rationals.rb +77 -0
  1096. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/ruby_core_support.rb +146 -0
  1097. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/ruby_country_info.rb +74 -0
  1098. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/ruby_data_source.rb +136 -0
  1099. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/time_or_datetime.rb +340 -0
  1100. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone.rb +669 -0
  1101. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_definition.rb +36 -0
  1102. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_index_definition.rb +54 -0
  1103. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_info.rb +30 -0
  1104. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_offset.rb +101 -0
  1105. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_period.rb +245 -0
  1106. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_proxy.rb +105 -0
  1107. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_transition.rb +130 -0
  1108. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_transition_definition.rb +104 -0
  1109. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/transition_data_timezone_info.rb +274 -0
  1110. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_country_info.rb +37 -0
  1111. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_data_source.rb +488 -0
  1112. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_timezone_info.rb +296 -0
  1113. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_country.rb +234 -0
  1114. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_country_index_definition.rb +69 -0
  1115. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_country_info.rb +16 -0
  1116. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_country_timezone.rb +173 -0
  1117. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_data_source.rb +218 -0
  1118. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_data_timezone.rb +99 -0
  1119. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_data_timezone_info.rb +18 -0
  1120. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_info_timezone.rb +34 -0
  1121. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_linked_timezone.rb +155 -0
  1122. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_linked_timezone_info.rb +23 -0
  1123. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_offset_rationals.rb +23 -0
  1124. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_ruby_core_support.rb +168 -0
  1125. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_ruby_country_info.rb +110 -0
  1126. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_ruby_data_source.rb +143 -0
  1127. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_time_or_datetime.rb +654 -0
  1128. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone.rb +1350 -0
  1129. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_definition.rb +113 -0
  1130. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_index_definition.rb +73 -0
  1131. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_info.rb +11 -0
  1132. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_london.rb +143 -0
  1133. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_melbourne.rb +142 -0
  1134. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_new_york.rb +142 -0
  1135. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_offset.rb +126 -0
  1136. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_period.rb +555 -0
  1137. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_proxy.rb +136 -0
  1138. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_transition.rb +366 -0
  1139. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_transition_definition.rb +295 -0
  1140. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_timezone_utc.rb +27 -0
  1141. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_transition_data_timezone_info.rb +423 -0
  1142. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_zoneinfo_country_info.rb +78 -0
  1143. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_zoneinfo_data_source.rb +1195 -0
  1144. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tc_zoneinfo_timezone_info.rb +1232 -0
  1145. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/test_utils.rb +163 -0
  1146. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/ts_all.rb +7 -0
  1147. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/ts_all_ruby.rb +5 -0
  1148. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/ts_all_zoneinfo.rb +7 -0
  1149. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data.rb +8 -0
  1150. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/America/Argentina/Buenos_Aires.rb +89 -0
  1151. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/America/New_York.rb +315 -0
  1152. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Australia/Melbourne.rb +218 -0
  1153. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/EST.rb +19 -0
  1154. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__m__1.rb +21 -0
  1155. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__p__1.rb +21 -0
  1156. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Etc/UTC.rb +21 -0
  1157. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Europe/Amsterdam.rb +261 -0
  1158. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Europe/Andorra.rb +186 -0
  1159. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Europe/London.rb +321 -0
  1160. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Europe/Paris.rb +265 -0
  1161. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/Europe/Prague.rb +220 -0
  1162. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/definitions/UTC.rb +16 -0
  1163. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/indexes/countries.rb +927 -0
  1164. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/indexes/timezones.rb +596 -0
  1165. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/tzinfo-data/tzinfo/data/version.rb +14 -0
  1166. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/America/Argentina/Buenos_Aires +0 -0
  1167. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/America/New_York +0 -0
  1168. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Australia/Melbourne +0 -0
  1169. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/EST +0 -0
  1170. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Etc/UTC +0 -0
  1171. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Europe/Amsterdam +0 -0
  1172. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Europe/Andorra +0 -0
  1173. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Europe/London +0 -0
  1174. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Europe/Paris +0 -0
  1175. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Europe/Prague +0 -0
  1176. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/Factory +0 -0
  1177. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/iso3166.tab +275 -0
  1178. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/leapseconds +61 -0
  1179. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/posix/Europe/London +0 -0
  1180. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/posixrules +0 -0
  1181. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/right/Europe/London +0 -0
  1182. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/zone.tab +439 -0
  1183. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/test/zoneinfo/zone1970.tab +369 -0
  1184. data/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/tzinfo.gemspec +21 -0
  1185. data/vendor/bundle/ruby/2.5.0/specifications/activemodel-5.2.3.gemspec +34 -0
  1186. data/vendor/bundle/ruby/2.5.0/specifications/activemodel-serializers-xml-1.0.2.gemspec +46 -0
  1187. data/vendor/bundle/ruby/2.5.0/specifications/activeresource-5.1.0.gemspec +48 -0
  1188. data/vendor/bundle/ruby/2.5.0/specifications/activesupport-5.2.3.gemspec +44 -0
  1189. data/vendor/bundle/ruby/2.5.0/specifications/allison-2.0.3.gemspec +23 -0
  1190. data/vendor/bundle/ruby/2.5.0/specifications/builder-3.2.3.gemspec +21 -0
  1191. data/vendor/bundle/ruby/2.5.0/specifications/concurrent-ruby-1.1.5.gemspec +24 -0
  1192. data/vendor/bundle/ruby/2.5.0/specifications/echoe-4.6.6.gemspec +46 -0
  1193. data/vendor/bundle/ruby/2.5.0/specifications/i18n-1.6.0.gemspec +35 -0
  1194. data/vendor/bundle/ruby/2.5.0/specifications/json_pure-2.2.0.gemspec +39 -0
  1195. data/vendor/bundle/ruby/2.5.0/specifications/minitest-5.11.3.gemspec +39 -0
  1196. data/vendor/bundle/ruby/2.5.0/specifications/rake-12.3.2.gemspec +49 -0
  1197. data/vendor/bundle/ruby/2.5.0/specifications/rdoc-6.1.1.gemspec +50 -0
  1198. data/vendor/bundle/ruby/2.5.0/specifications/rubyforge-2.0.4.gemspec +36 -0
  1199. data/vendor/bundle/ruby/2.5.0/specifications/thread_safe-0.3.6.gemspec +38 -0
  1200. data/vendor/bundle/ruby/2.5.0/specifications/tzinfo-1.2.5.gemspec +37 -0
  1201. metadata +1283 -91
  1202. metadata.gz.sig +2 -0
  1203. data/sbin/rake-deploy1.sh +0 -9
  1204. data/sbin/rake-deploy2.sh +0 -11
  1205. data/sbin/reboot.rb +0 -3
  1206. data/sbin/ric_reboot.rb +0 -3
@@ -0,0 +1,2132 @@
1
+ # frozen_string_literal: true
2
+ ##
3
+ # HTML entity name map for RDoc::Markdown
4
+
5
+ RDoc::Markdown::HTML_ENTITIES = {
6
+ "AElig" => [0x000C6],
7
+ "AMP" => [0x00026],
8
+ "Aacute" => [0x000C1],
9
+ "Abreve" => [0x00102],
10
+ "Acirc" => [0x000C2],
11
+ "Acy" => [0x00410],
12
+ "Afr" => [0x1D504],
13
+ "Agrave" => [0x000C0],
14
+ "Alpha" => [0x00391],
15
+ "Amacr" => [0x00100],
16
+ "And" => [0x02A53],
17
+ "Aogon" => [0x00104],
18
+ "Aopf" => [0x1D538],
19
+ "ApplyFunction" => [0x02061],
20
+ "Aring" => [0x000C5],
21
+ "Ascr" => [0x1D49C],
22
+ "Assign" => [0x02254],
23
+ "Atilde" => [0x000C3],
24
+ "Auml" => [0x000C4],
25
+ "Backslash" => [0x02216],
26
+ "Barv" => [0x02AE7],
27
+ "Barwed" => [0x02306],
28
+ "Bcy" => [0x00411],
29
+ "Because" => [0x02235],
30
+ "Bernoullis" => [0x0212C],
31
+ "Beta" => [0x00392],
32
+ "Bfr" => [0x1D505],
33
+ "Bopf" => [0x1D539],
34
+ "Breve" => [0x002D8],
35
+ "Bscr" => [0x0212C],
36
+ "Bumpeq" => [0x0224E],
37
+ "CHcy" => [0x00427],
38
+ "COPY" => [0x000A9],
39
+ "Cacute" => [0x00106],
40
+ "Cap" => [0x022D2],
41
+ "CapitalDifferentialD" => [0x02145],
42
+ "Cayleys" => [0x0212D],
43
+ "Ccaron" => [0x0010C],
44
+ "Ccedil" => [0x000C7],
45
+ "Ccirc" => [0x00108],
46
+ "Cconint" => [0x02230],
47
+ "Cdot" => [0x0010A],
48
+ "Cedilla" => [0x000B8],
49
+ "CenterDot" => [0x000B7],
50
+ "Cfr" => [0x0212D],
51
+ "Chi" => [0x003A7],
52
+ "CircleDot" => [0x02299],
53
+ "CircleMinus" => [0x02296],
54
+ "CirclePlus" => [0x02295],
55
+ "CircleTimes" => [0x02297],
56
+ "ClockwiseContourIntegral" => [0x02232],
57
+ "CloseCurlyDoubleQuote" => [0x0201D],
58
+ "CloseCurlyQuote" => [0x02019],
59
+ "Colon" => [0x02237],
60
+ "Colone" => [0x02A74],
61
+ "Congruent" => [0x02261],
62
+ "Conint" => [0x0222F],
63
+ "ContourIntegral" => [0x0222E],
64
+ "Copf" => [0x02102],
65
+ "Coproduct" => [0x02210],
66
+ "CounterClockwiseContourIntegral" => [0x02233],
67
+ "Cross" => [0x02A2F],
68
+ "Cscr" => [0x1D49E],
69
+ "Cup" => [0x022D3],
70
+ "CupCap" => [0x0224D],
71
+ "DD" => [0x02145],
72
+ "DDotrahd" => [0x02911],
73
+ "DJcy" => [0x00402],
74
+ "DScy" => [0x00405],
75
+ "DZcy" => [0x0040F],
76
+ "Dagger" => [0x02021],
77
+ "Darr" => [0x021A1],
78
+ "Dashv" => [0x02AE4],
79
+ "Dcaron" => [0x0010E],
80
+ "Dcy" => [0x00414],
81
+ "Del" => [0x02207],
82
+ "Delta" => [0x00394],
83
+ "Dfr" => [0x1D507],
84
+ "DiacriticalAcute" => [0x000B4],
85
+ "DiacriticalDot" => [0x002D9],
86
+ "DiacriticalDoubleAcute" => [0x002DD],
87
+ "DiacriticalGrave" => [0x00060],
88
+ "DiacriticalTilde" => [0x002DC],
89
+ "Diamond" => [0x022C4],
90
+ "DifferentialD" => [0x02146],
91
+ "Dopf" => [0x1D53B],
92
+ "Dot" => [0x000A8],
93
+ "DotDot" => [0x020DC],
94
+ "DotEqual" => [0x02250],
95
+ "DoubleContourIntegral" => [0x0222F],
96
+ "DoubleDot" => [0x000A8],
97
+ "DoubleDownArrow" => [0x021D3],
98
+ "DoubleLeftArrow" => [0x021D0],
99
+ "DoubleLeftRightArrow" => [0x021D4],
100
+ "DoubleLeftTee" => [0x02AE4],
101
+ "DoubleLongLeftArrow" => [0x027F8],
102
+ "DoubleLongLeftRightArrow" => [0x027FA],
103
+ "DoubleLongRightArrow" => [0x027F9],
104
+ "DoubleRightArrow" => [0x021D2],
105
+ "DoubleRightTee" => [0x022A8],
106
+ "DoubleUpArrow" => [0x021D1],
107
+ "DoubleUpDownArrow" => [0x021D5],
108
+ "DoubleVerticalBar" => [0x02225],
109
+ "DownArrow" => [0x02193],
110
+ "DownArrowBar" => [0x02913],
111
+ "DownArrowUpArrow" => [0x021F5],
112
+ "DownBreve" => [0x00311],
113
+ "DownLeftRightVector" => [0x02950],
114
+ "DownLeftTeeVector" => [0x0295E],
115
+ "DownLeftVector" => [0x021BD],
116
+ "DownLeftVectorBar" => [0x02956],
117
+ "DownRightTeeVector" => [0x0295F],
118
+ "DownRightVector" => [0x021C1],
119
+ "DownRightVectorBar" => [0x02957],
120
+ "DownTee" => [0x022A4],
121
+ "DownTeeArrow" => [0x021A7],
122
+ "Downarrow" => [0x021D3],
123
+ "Dscr" => [0x1D49F],
124
+ "Dstrok" => [0x00110],
125
+ "ENG" => [0x0014A],
126
+ "ETH" => [0x000D0],
127
+ "Eacute" => [0x000C9],
128
+ "Ecaron" => [0x0011A],
129
+ "Ecirc" => [0x000CA],
130
+ "Ecy" => [0x0042D],
131
+ "Edot" => [0x00116],
132
+ "Efr" => [0x1D508],
133
+ "Egrave" => [0x000C8],
134
+ "Element" => [0x02208],
135
+ "Emacr" => [0x00112],
136
+ "EmptySmallSquare" => [0x025FB],
137
+ "EmptyVerySmallSquare" => [0x025AB],
138
+ "Eogon" => [0x00118],
139
+ "Eopf" => [0x1D53C],
140
+ "Epsilon" => [0x00395],
141
+ "Equal" => [0x02A75],
142
+ "EqualTilde" => [0x02242],
143
+ "Equilibrium" => [0x021CC],
144
+ "Escr" => [0x02130],
145
+ "Esim" => [0x02A73],
146
+ "Eta" => [0x00397],
147
+ "Euml" => [0x000CB],
148
+ "Exists" => [0x02203],
149
+ "ExponentialE" => [0x02147],
150
+ "Fcy" => [0x00424],
151
+ "Ffr" => [0x1D509],
152
+ "FilledSmallSquare" => [0x025FC],
153
+ "FilledVerySmallSquare" => [0x025AA],
154
+ "Fopf" => [0x1D53D],
155
+ "ForAll" => [0x02200],
156
+ "Fouriertrf" => [0x02131],
157
+ "Fscr" => [0x02131],
158
+ "GJcy" => [0x00403],
159
+ "GT" => [0x0003E],
160
+ "Gamma" => [0x00393],
161
+ "Gammad" => [0x003DC],
162
+ "Gbreve" => [0x0011E],
163
+ "Gcedil" => [0x00122],
164
+ "Gcirc" => [0x0011C],
165
+ "Gcy" => [0x00413],
166
+ "Gdot" => [0x00120],
167
+ "Gfr" => [0x1D50A],
168
+ "Gg" => [0x022D9],
169
+ "Gopf" => [0x1D53E],
170
+ "GreaterEqual" => [0x02265],
171
+ "GreaterEqualLess" => [0x022DB],
172
+ "GreaterFullEqual" => [0x02267],
173
+ "GreaterGreater" => [0x02AA2],
174
+ "GreaterLess" => [0x02277],
175
+ "GreaterSlantEqual" => [0x02A7E],
176
+ "GreaterTilde" => [0x02273],
177
+ "Gscr" => [0x1D4A2],
178
+ "Gt" => [0x0226B],
179
+ "HARDcy" => [0x0042A],
180
+ "Hacek" => [0x002C7],
181
+ "Hat" => [0x0005E],
182
+ "Hcirc" => [0x00124],
183
+ "Hfr" => [0x0210C],
184
+ "HilbertSpace" => [0x0210B],
185
+ "Hopf" => [0x0210D],
186
+ "HorizontalLine" => [0x02500],
187
+ "Hscr" => [0x0210B],
188
+ "Hstrok" => [0x00126],
189
+ "HumpDownHump" => [0x0224E],
190
+ "HumpEqual" => [0x0224F],
191
+ "IEcy" => [0x00415],
192
+ "IJlig" => [0x00132],
193
+ "IOcy" => [0x00401],
194
+ "Iacute" => [0x000CD],
195
+ "Icirc" => [0x000CE],
196
+ "Icy" => [0x00418],
197
+ "Idot" => [0x00130],
198
+ "Ifr" => [0x02111],
199
+ "Igrave" => [0x000CC],
200
+ "Im" => [0x02111],
201
+ "Imacr" => [0x0012A],
202
+ "ImaginaryI" => [0x02148],
203
+ "Implies" => [0x021D2],
204
+ "Int" => [0x0222C],
205
+ "Integral" => [0x0222B],
206
+ "Intersection" => [0x022C2],
207
+ "InvisibleComma" => [0x02063],
208
+ "InvisibleTimes" => [0x02062],
209
+ "Iogon" => [0x0012E],
210
+ "Iopf" => [0x1D540],
211
+ "Iota" => [0x00399],
212
+ "Iscr" => [0x02110],
213
+ "Itilde" => [0x00128],
214
+ "Iukcy" => [0x00406],
215
+ "Iuml" => [0x000CF],
216
+ "Jcirc" => [0x00134],
217
+ "Jcy" => [0x00419],
218
+ "Jfr" => [0x1D50D],
219
+ "Jopf" => [0x1D541],
220
+ "Jscr" => [0x1D4A5],
221
+ "Jsercy" => [0x00408],
222
+ "Jukcy" => [0x00404],
223
+ "KHcy" => [0x00425],
224
+ "KJcy" => [0x0040C],
225
+ "Kappa" => [0x0039A],
226
+ "Kcedil" => [0x00136],
227
+ "Kcy" => [0x0041A],
228
+ "Kfr" => [0x1D50E],
229
+ "Kopf" => [0x1D542],
230
+ "Kscr" => [0x1D4A6],
231
+ "LJcy" => [0x00409],
232
+ "LT" => [0x0003C],
233
+ "Lacute" => [0x00139],
234
+ "Lambda" => [0x0039B],
235
+ "Lang" => [0x027EA],
236
+ "Laplacetrf" => [0x02112],
237
+ "Larr" => [0x0219E],
238
+ "Lcaron" => [0x0013D],
239
+ "Lcedil" => [0x0013B],
240
+ "Lcy" => [0x0041B],
241
+ "LeftAngleBracket" => [0x027E8],
242
+ "LeftArrow" => [0x02190],
243
+ "LeftArrowBar" => [0x021E4],
244
+ "LeftArrowRightArrow" => [0x021C6],
245
+ "LeftCeiling" => [0x02308],
246
+ "LeftDoubleBracket" => [0x027E6],
247
+ "LeftDownTeeVector" => [0x02961],
248
+ "LeftDownVector" => [0x021C3],
249
+ "LeftDownVectorBar" => [0x02959],
250
+ "LeftFloor" => [0x0230A],
251
+ "LeftRightArrow" => [0x02194],
252
+ "LeftRightVector" => [0x0294E],
253
+ "LeftTee" => [0x022A3],
254
+ "LeftTeeArrow" => [0x021A4],
255
+ "LeftTeeVector" => [0x0295A],
256
+ "LeftTriangle" => [0x022B2],
257
+ "LeftTriangleBar" => [0x029CF],
258
+ "LeftTriangleEqual" => [0x022B4],
259
+ "LeftUpDownVector" => [0x02951],
260
+ "LeftUpTeeVector" => [0x02960],
261
+ "LeftUpVector" => [0x021BF],
262
+ "LeftUpVectorBar" => [0x02958],
263
+ "LeftVector" => [0x021BC],
264
+ "LeftVectorBar" => [0x02952],
265
+ "Leftarrow" => [0x021D0],
266
+ "Leftrightarrow" => [0x021D4],
267
+ "LessEqualGreater" => [0x022DA],
268
+ "LessFullEqual" => [0x02266],
269
+ "LessGreater" => [0x02276],
270
+ "LessLess" => [0x02AA1],
271
+ "LessSlantEqual" => [0x02A7D],
272
+ "LessTilde" => [0x02272],
273
+ "Lfr" => [0x1D50F],
274
+ "Ll" => [0x022D8],
275
+ "Lleftarrow" => [0x021DA],
276
+ "Lmidot" => [0x0013F],
277
+ "LongLeftArrow" => [0x027F5],
278
+ "LongLeftRightArrow" => [0x027F7],
279
+ "LongRightArrow" => [0x027F6],
280
+ "Longleftarrow" => [0x027F8],
281
+ "Longleftrightarrow" => [0x027FA],
282
+ "Longrightarrow" => [0x027F9],
283
+ "Lopf" => [0x1D543],
284
+ "LowerLeftArrow" => [0x02199],
285
+ "LowerRightArrow" => [0x02198],
286
+ "Lscr" => [0x02112],
287
+ "Lsh" => [0x021B0],
288
+ "Lstrok" => [0x00141],
289
+ "Lt" => [0x0226A],
290
+ "Map" => [0x02905],
291
+ "Mcy" => [0x0041C],
292
+ "MediumSpace" => [0x0205F],
293
+ "Mellintrf" => [0x02133],
294
+ "Mfr" => [0x1D510],
295
+ "MinusPlus" => [0x02213],
296
+ "Mopf" => [0x1D544],
297
+ "Mscr" => [0x02133],
298
+ "Mu" => [0x0039C],
299
+ "NJcy" => [0x0040A],
300
+ "Nacute" => [0x00143],
301
+ "Ncaron" => [0x00147],
302
+ "Ncedil" => [0x00145],
303
+ "Ncy" => [0x0041D],
304
+ "NegativeMediumSpace" => [0x0200B],
305
+ "NegativeThickSpace" => [0x0200B],
306
+ "NegativeThinSpace" => [0x0200B],
307
+ "NegativeVeryThinSpace" => [0x0200B],
308
+ "NestedGreaterGreater" => [0x0226B],
309
+ "NestedLessLess" => [0x0226A],
310
+ "NewLine" => [0x0000A],
311
+ "Nfr" => [0x1D511],
312
+ "NoBreak" => [0x02060],
313
+ "NonBreakingSpace" => [0x000A0],
314
+ "Nopf" => [0x02115],
315
+ "Not" => [0x02AEC],
316
+ "NotCongruent" => [0x02262],
317
+ "NotCupCap" => [0x0226D],
318
+ "NotDoubleVerticalBar" => [0x02226],
319
+ "NotElement" => [0x02209],
320
+ "NotEqual" => [0x02260],
321
+ "NotEqualTilde" => [0x02242, 0x00338],
322
+ "NotExists" => [0x02204],
323
+ "NotGreater" => [0x0226F],
324
+ "NotGreaterEqual" => [0x02271],
325
+ "NotGreaterFullEqual" => [0x02267, 0x00338],
326
+ "NotGreaterGreater" => [0x0226B, 0x00338],
327
+ "NotGreaterLess" => [0x02279],
328
+ "NotGreaterSlantEqual" => [0x02A7E, 0x00338],
329
+ "NotGreaterTilde" => [0x02275],
330
+ "NotHumpDownHump" => [0x0224E, 0x00338],
331
+ "NotHumpEqual" => [0x0224F, 0x00338],
332
+ "NotLeftTriangle" => [0x022EA],
333
+ "NotLeftTriangleBar" => [0x029CF, 0x00338],
334
+ "NotLeftTriangleEqual" => [0x022EC],
335
+ "NotLess" => [0x0226E],
336
+ "NotLessEqual" => [0x02270],
337
+ "NotLessGreater" => [0x02278],
338
+ "NotLessLess" => [0x0226A, 0x00338],
339
+ "NotLessSlantEqual" => [0x02A7D, 0x00338],
340
+ "NotLessTilde" => [0x02274],
341
+ "NotNestedGreaterGreater" => [0x02AA2, 0x00338],
342
+ "NotNestedLessLess" => [0x02AA1, 0x00338],
343
+ "NotPrecedes" => [0x02280],
344
+ "NotPrecedesEqual" => [0x02AAF, 0x00338],
345
+ "NotPrecedesSlantEqual" => [0x022E0],
346
+ "NotReverseElement" => [0x0220C],
347
+ "NotRightTriangle" => [0x022EB],
348
+ "NotRightTriangleBar" => [0x029D0, 0x00338],
349
+ "NotRightTriangleEqual" => [0x022ED],
350
+ "NotSquareSubset" => [0x0228F, 0x00338],
351
+ "NotSquareSubsetEqual" => [0x022E2],
352
+ "NotSquareSuperset" => [0x02290, 0x00338],
353
+ "NotSquareSupersetEqual" => [0x022E3],
354
+ "NotSubset" => [0x02282, 0x020D2],
355
+ "NotSubsetEqual" => [0x02288],
356
+ "NotSucceeds" => [0x02281],
357
+ "NotSucceedsEqual" => [0x02AB0, 0x00338],
358
+ "NotSucceedsSlantEqual" => [0x022E1],
359
+ "NotSucceedsTilde" => [0x0227F, 0x00338],
360
+ "NotSuperset" => [0x02283, 0x020D2],
361
+ "NotSupersetEqual" => [0x02289],
362
+ "NotTilde" => [0x02241],
363
+ "NotTildeEqual" => [0x02244],
364
+ "NotTildeFullEqual" => [0x02247],
365
+ "NotTildeTilde" => [0x02249],
366
+ "NotVerticalBar" => [0x02224],
367
+ "Nscr" => [0x1D4A9],
368
+ "Ntilde" => [0x000D1],
369
+ "Nu" => [0x0039D],
370
+ "OElig" => [0x00152],
371
+ "Oacute" => [0x000D3],
372
+ "Ocirc" => [0x000D4],
373
+ "Ocy" => [0x0041E],
374
+ "Odblac" => [0x00150],
375
+ "Ofr" => [0x1D512],
376
+ "Ograve" => [0x000D2],
377
+ "Omacr" => [0x0014C],
378
+ "Omega" => [0x003A9],
379
+ "Omicron" => [0x0039F],
380
+ "Oopf" => [0x1D546],
381
+ "OpenCurlyDoubleQuote" => [0x0201C],
382
+ "OpenCurlyQuote" => [0x02018],
383
+ "Or" => [0x02A54],
384
+ "Oscr" => [0x1D4AA],
385
+ "Oslash" => [0x000D8],
386
+ "Otilde" => [0x000D5],
387
+ "Otimes" => [0x02A37],
388
+ "Ouml" => [0x000D6],
389
+ "OverBar" => [0x0203E],
390
+ "OverBrace" => [0x023DE],
391
+ "OverBracket" => [0x023B4],
392
+ "OverParenthesis" => [0x023DC],
393
+ "PartialD" => [0x02202],
394
+ "Pcy" => [0x0041F],
395
+ "Pfr" => [0x1D513],
396
+ "Phi" => [0x003A6],
397
+ "Pi" => [0x003A0],
398
+ "PlusMinus" => [0x000B1],
399
+ "Poincareplane" => [0x0210C],
400
+ "Popf" => [0x02119],
401
+ "Pr" => [0x02ABB],
402
+ "Precedes" => [0x0227A],
403
+ "PrecedesEqual" => [0x02AAF],
404
+ "PrecedesSlantEqual" => [0x0227C],
405
+ "PrecedesTilde" => [0x0227E],
406
+ "Prime" => [0x02033],
407
+ "Product" => [0x0220F],
408
+ "Proportion" => [0x02237],
409
+ "Proportional" => [0x0221D],
410
+ "Pscr" => [0x1D4AB],
411
+ "Psi" => [0x003A8],
412
+ "QUOT" => [0x00022],
413
+ "Qfr" => [0x1D514],
414
+ "Qopf" => [0x0211A],
415
+ "Qscr" => [0x1D4AC],
416
+ "RBarr" => [0x02910],
417
+ "REG" => [0x000AE],
418
+ "Racute" => [0x00154],
419
+ "Rang" => [0x027EB],
420
+ "Rarr" => [0x021A0],
421
+ "Rarrtl" => [0x02916],
422
+ "Rcaron" => [0x00158],
423
+ "Rcedil" => [0x00156],
424
+ "Rcy" => [0x00420],
425
+ "Re" => [0x0211C],
426
+ "ReverseElement" => [0x0220B],
427
+ "ReverseEquilibrium" => [0x021CB],
428
+ "ReverseUpEquilibrium" => [0x0296F],
429
+ "Rfr" => [0x0211C],
430
+ "Rho" => [0x003A1],
431
+ "RightAngleBracket" => [0x027E9],
432
+ "RightArrow" => [0x02192],
433
+ "RightArrowBar" => [0x021E5],
434
+ "RightArrowLeftArrow" => [0x021C4],
435
+ "RightCeiling" => [0x02309],
436
+ "RightDoubleBracket" => [0x027E7],
437
+ "RightDownTeeVector" => [0x0295D],
438
+ "RightDownVector" => [0x021C2],
439
+ "RightDownVectorBar" => [0x02955],
440
+ "RightFloor" => [0x0230B],
441
+ "RightTee" => [0x022A2],
442
+ "RightTeeArrow" => [0x021A6],
443
+ "RightTeeVector" => [0x0295B],
444
+ "RightTriangle" => [0x022B3],
445
+ "RightTriangleBar" => [0x029D0],
446
+ "RightTriangleEqual" => [0x022B5],
447
+ "RightUpDownVector" => [0x0294F],
448
+ "RightUpTeeVector" => [0x0295C],
449
+ "RightUpVector" => [0x021BE],
450
+ "RightUpVectorBar" => [0x02954],
451
+ "RightVector" => [0x021C0],
452
+ "RightVectorBar" => [0x02953],
453
+ "Rightarrow" => [0x021D2],
454
+ "Ropf" => [0x0211D],
455
+ "RoundImplies" => [0x02970],
456
+ "Rrightarrow" => [0x021DB],
457
+ "Rscr" => [0x0211B],
458
+ "Rsh" => [0x021B1],
459
+ "RuleDelayed" => [0x029F4],
460
+ "SHCHcy" => [0x00429],
461
+ "SHcy" => [0x00428],
462
+ "SOFTcy" => [0x0042C],
463
+ "Sacute" => [0x0015A],
464
+ "Sc" => [0x02ABC],
465
+ "Scaron" => [0x00160],
466
+ "Scedil" => [0x0015E],
467
+ "Scirc" => [0x0015C],
468
+ "Scy" => [0x00421],
469
+ "Sfr" => [0x1D516],
470
+ "ShortDownArrow" => [0x02193],
471
+ "ShortLeftArrow" => [0x02190],
472
+ "ShortRightArrow" => [0x02192],
473
+ "ShortUpArrow" => [0x02191],
474
+ "Sigma" => [0x003A3],
475
+ "SmallCircle" => [0x02218],
476
+ "Sopf" => [0x1D54A],
477
+ "Sqrt" => [0x0221A],
478
+ "Square" => [0x025A1],
479
+ "SquareIntersection" => [0x02293],
480
+ "SquareSubset" => [0x0228F],
481
+ "SquareSubsetEqual" => [0x02291],
482
+ "SquareSuperset" => [0x02290],
483
+ "SquareSupersetEqual" => [0x02292],
484
+ "SquareUnion" => [0x02294],
485
+ "Sscr" => [0x1D4AE],
486
+ "Star" => [0x022C6],
487
+ "Sub" => [0x022D0],
488
+ "Subset" => [0x022D0],
489
+ "SubsetEqual" => [0x02286],
490
+ "Succeeds" => [0x0227B],
491
+ "SucceedsEqual" => [0x02AB0],
492
+ "SucceedsSlantEqual" => [0x0227D],
493
+ "SucceedsTilde" => [0x0227F],
494
+ "SuchThat" => [0x0220B],
495
+ "Sum" => [0x02211],
496
+ "Sup" => [0x022D1],
497
+ "Superset" => [0x02283],
498
+ "SupersetEqual" => [0x02287],
499
+ "Supset" => [0x022D1],
500
+ "THORN" => [0x000DE],
501
+ "TRADE" => [0x02122],
502
+ "TSHcy" => [0x0040B],
503
+ "TScy" => [0x00426],
504
+ "Tab" => [0x00009],
505
+ "Tau" => [0x003A4],
506
+ "Tcaron" => [0x00164],
507
+ "Tcedil" => [0x00162],
508
+ "Tcy" => [0x00422],
509
+ "Tfr" => [0x1D517],
510
+ "Therefore" => [0x02234],
511
+ "Theta" => [0x00398],
512
+ "ThickSpace" => [0x0205F, 0x0200A],
513
+ "ThinSpace" => [0x02009],
514
+ "Tilde" => [0x0223C],
515
+ "TildeEqual" => [0x02243],
516
+ "TildeFullEqual" => [0x02245],
517
+ "TildeTilde" => [0x02248],
518
+ "Topf" => [0x1D54B],
519
+ "TripleDot" => [0x020DB],
520
+ "Tscr" => [0x1D4AF],
521
+ "Tstrok" => [0x00166],
522
+ "Uacute" => [0x000DA],
523
+ "Uarr" => [0x0219F],
524
+ "Uarrocir" => [0x02949],
525
+ "Ubrcy" => [0x0040E],
526
+ "Ubreve" => [0x0016C],
527
+ "Ucirc" => [0x000DB],
528
+ "Ucy" => [0x00423],
529
+ "Udblac" => [0x00170],
530
+ "Ufr" => [0x1D518],
531
+ "Ugrave" => [0x000D9],
532
+ "Umacr" => [0x0016A],
533
+ "UnderBar" => [0x0005F],
534
+ "UnderBrace" => [0x023DF],
535
+ "UnderBracket" => [0x023B5],
536
+ "UnderParenthesis" => [0x023DD],
537
+ "Union" => [0x022C3],
538
+ "UnionPlus" => [0x0228E],
539
+ "Uogon" => [0x00172],
540
+ "Uopf" => [0x1D54C],
541
+ "UpArrow" => [0x02191],
542
+ "UpArrowBar" => [0x02912],
543
+ "UpArrowDownArrow" => [0x021C5],
544
+ "UpDownArrow" => [0x02195],
545
+ "UpEquilibrium" => [0x0296E],
546
+ "UpTee" => [0x022A5],
547
+ "UpTeeArrow" => [0x021A5],
548
+ "Uparrow" => [0x021D1],
549
+ "Updownarrow" => [0x021D5],
550
+ "UpperLeftArrow" => [0x02196],
551
+ "UpperRightArrow" => [0x02197],
552
+ "Upsi" => [0x003D2],
553
+ "Upsilon" => [0x003A5],
554
+ "Uring" => [0x0016E],
555
+ "Uscr" => [0x1D4B0],
556
+ "Utilde" => [0x00168],
557
+ "Uuml" => [0x000DC],
558
+ "VDash" => [0x022AB],
559
+ "Vbar" => [0x02AEB],
560
+ "Vcy" => [0x00412],
561
+ "Vdash" => [0x022A9],
562
+ "Vdashl" => [0x02AE6],
563
+ "Vee" => [0x022C1],
564
+ "Verbar" => [0x02016],
565
+ "Vert" => [0x02016],
566
+ "VerticalBar" => [0x02223],
567
+ "VerticalLine" => [0x0007C],
568
+ "VerticalSeparator" => [0x02758],
569
+ "VerticalTilde" => [0x02240],
570
+ "VeryThinSpace" => [0x0200A],
571
+ "Vfr" => [0x1D519],
572
+ "Vopf" => [0x1D54D],
573
+ "Vscr" => [0x1D4B1],
574
+ "Vvdash" => [0x022AA],
575
+ "Wcirc" => [0x00174],
576
+ "Wedge" => [0x022C0],
577
+ "Wfr" => [0x1D51A],
578
+ "Wopf" => [0x1D54E],
579
+ "Wscr" => [0x1D4B2],
580
+ "Xfr" => [0x1D51B],
581
+ "Xi" => [0x0039E],
582
+ "Xopf" => [0x1D54F],
583
+ "Xscr" => [0x1D4B3],
584
+ "YAcy" => [0x0042F],
585
+ "YIcy" => [0x00407],
586
+ "YUcy" => [0x0042E],
587
+ "Yacute" => [0x000DD],
588
+ "Ycirc" => [0x00176],
589
+ "Ycy" => [0x0042B],
590
+ "Yfr" => [0x1D51C],
591
+ "Yopf" => [0x1D550],
592
+ "Yscr" => [0x1D4B4],
593
+ "Yuml" => [0x00178],
594
+ "ZHcy" => [0x00416],
595
+ "Zacute" => [0x00179],
596
+ "Zcaron" => [0x0017D],
597
+ "Zcy" => [0x00417],
598
+ "Zdot" => [0x0017B],
599
+ "ZeroWidthSpace" => [0x0200B],
600
+ "Zeta" => [0x00396],
601
+ "Zfr" => [0x02128],
602
+ "Zopf" => [0x02124],
603
+ "Zscr" => [0x1D4B5],
604
+ "aacute" => [0x000E1],
605
+ "abreve" => [0x00103],
606
+ "ac" => [0x0223E],
607
+ "acE" => [0x0223E, 0x00333],
608
+ "acd" => [0x0223F],
609
+ "acirc" => [0x000E2],
610
+ "acute" => [0x000B4],
611
+ "acy" => [0x00430],
612
+ "aelig" => [0x000E6],
613
+ "af" => [0x02061],
614
+ "afr" => [0x1D51E],
615
+ "agrave" => [0x000E0],
616
+ "alefsym" => [0x02135],
617
+ "aleph" => [0x02135],
618
+ "alpha" => [0x003B1],
619
+ "amacr" => [0x00101],
620
+ "amalg" => [0x02A3F],
621
+ "amp" => [0x00026],
622
+ "and" => [0x02227],
623
+ "andand" => [0x02A55],
624
+ "andd" => [0x02A5C],
625
+ "andslope" => [0x02A58],
626
+ "andv" => [0x02A5A],
627
+ "ang" => [0x02220],
628
+ "ange" => [0x029A4],
629
+ "angle" => [0x02220],
630
+ "angmsd" => [0x02221],
631
+ "angmsdaa" => [0x029A8],
632
+ "angmsdab" => [0x029A9],
633
+ "angmsdac" => [0x029AA],
634
+ "angmsdad" => [0x029AB],
635
+ "angmsdae" => [0x029AC],
636
+ "angmsdaf" => [0x029AD],
637
+ "angmsdag" => [0x029AE],
638
+ "angmsdah" => [0x029AF],
639
+ "angrt" => [0x0221F],
640
+ "angrtvb" => [0x022BE],
641
+ "angrtvbd" => [0x0299D],
642
+ "angsph" => [0x02222],
643
+ "angst" => [0x000C5],
644
+ "angzarr" => [0x0237C],
645
+ "aogon" => [0x00105],
646
+ "aopf" => [0x1D552],
647
+ "ap" => [0x02248],
648
+ "apE" => [0x02A70],
649
+ "apacir" => [0x02A6F],
650
+ "ape" => [0x0224A],
651
+ "apid" => [0x0224B],
652
+ "apos" => [0x00027],
653
+ "approx" => [0x02248],
654
+ "approxeq" => [0x0224A],
655
+ "aring" => [0x000E5],
656
+ "ascr" => [0x1D4B6],
657
+ "ast" => [0x0002A],
658
+ "asymp" => [0x02248],
659
+ "asympeq" => [0x0224D],
660
+ "atilde" => [0x000E3],
661
+ "auml" => [0x000E4],
662
+ "awconint" => [0x02233],
663
+ "awint" => [0x02A11],
664
+ "bNot" => [0x02AED],
665
+ "backcong" => [0x0224C],
666
+ "backepsilon" => [0x003F6],
667
+ "backprime" => [0x02035],
668
+ "backsim" => [0x0223D],
669
+ "backsimeq" => [0x022CD],
670
+ "barvee" => [0x022BD],
671
+ "barwed" => [0x02305],
672
+ "barwedge" => [0x02305],
673
+ "bbrk" => [0x023B5],
674
+ "bbrktbrk" => [0x023B6],
675
+ "bcong" => [0x0224C],
676
+ "bcy" => [0x00431],
677
+ "bdquo" => [0x0201E],
678
+ "becaus" => [0x02235],
679
+ "because" => [0x02235],
680
+ "bemptyv" => [0x029B0],
681
+ "bepsi" => [0x003F6],
682
+ "bernou" => [0x0212C],
683
+ "beta" => [0x003B2],
684
+ "beth" => [0x02136],
685
+ "between" => [0x0226C],
686
+ "bfr" => [0x1D51F],
687
+ "bigcap" => [0x022C2],
688
+ "bigcirc" => [0x025EF],
689
+ "bigcup" => [0x022C3],
690
+ "bigodot" => [0x02A00],
691
+ "bigoplus" => [0x02A01],
692
+ "bigotimes" => [0x02A02],
693
+ "bigsqcup" => [0x02A06],
694
+ "bigstar" => [0x02605],
695
+ "bigtriangledown" => [0x025BD],
696
+ "bigtriangleup" => [0x025B3],
697
+ "biguplus" => [0x02A04],
698
+ "bigvee" => [0x022C1],
699
+ "bigwedge" => [0x022C0],
700
+ "bkarow" => [0x0290D],
701
+ "blacklozenge" => [0x029EB],
702
+ "blacksquare" => [0x025AA],
703
+ "blacktriangle" => [0x025B4],
704
+ "blacktriangledown" => [0x025BE],
705
+ "blacktriangleleft" => [0x025C2],
706
+ "blacktriangleright" => [0x025B8],
707
+ "blank" => [0x02423],
708
+ "blk12" => [0x02592],
709
+ "blk14" => [0x02591],
710
+ "blk34" => [0x02593],
711
+ "block" => [0x02588],
712
+ "bne" => [0x0003D, 0x020E5],
713
+ "bnequiv" => [0x02261, 0x020E5],
714
+ "bnot" => [0x02310],
715
+ "bopf" => [0x1D553],
716
+ "bot" => [0x022A5],
717
+ "bottom" => [0x022A5],
718
+ "bowtie" => [0x022C8],
719
+ "boxDL" => [0x02557],
720
+ "boxDR" => [0x02554],
721
+ "boxDl" => [0x02556],
722
+ "boxDr" => [0x02553],
723
+ "boxH" => [0x02550],
724
+ "boxHD" => [0x02566],
725
+ "boxHU" => [0x02569],
726
+ "boxHd" => [0x02564],
727
+ "boxHu" => [0x02567],
728
+ "boxUL" => [0x0255D],
729
+ "boxUR" => [0x0255A],
730
+ "boxUl" => [0x0255C],
731
+ "boxUr" => [0x02559],
732
+ "boxV" => [0x02551],
733
+ "boxVH" => [0x0256C],
734
+ "boxVL" => [0x02563],
735
+ "boxVR" => [0x02560],
736
+ "boxVh" => [0x0256B],
737
+ "boxVl" => [0x02562],
738
+ "boxVr" => [0x0255F],
739
+ "boxbox" => [0x029C9],
740
+ "boxdL" => [0x02555],
741
+ "boxdR" => [0x02552],
742
+ "boxdl" => [0x02510],
743
+ "boxdr" => [0x0250C],
744
+ "boxh" => [0x02500],
745
+ "boxhD" => [0x02565],
746
+ "boxhU" => [0x02568],
747
+ "boxhd" => [0x0252C],
748
+ "boxhu" => [0x02534],
749
+ "boxminus" => [0x0229F],
750
+ "boxplus" => [0x0229E],
751
+ "boxtimes" => [0x022A0],
752
+ "boxuL" => [0x0255B],
753
+ "boxuR" => [0x02558],
754
+ "boxul" => [0x02518],
755
+ "boxur" => [0x02514],
756
+ "boxv" => [0x02502],
757
+ "boxvH" => [0x0256A],
758
+ "boxvL" => [0x02561],
759
+ "boxvR" => [0x0255E],
760
+ "boxvh" => [0x0253C],
761
+ "boxvl" => [0x02524],
762
+ "boxvr" => [0x0251C],
763
+ "bprime" => [0x02035],
764
+ "breve" => [0x002D8],
765
+ "brvbar" => [0x000A6],
766
+ "bscr" => [0x1D4B7],
767
+ "bsemi" => [0x0204F],
768
+ "bsim" => [0x0223D],
769
+ "bsime" => [0x022CD],
770
+ "bsol" => [0x0005C],
771
+ "bsolb" => [0x029C5],
772
+ "bsolhsub" => [0x027C8],
773
+ "bull" => [0x02022],
774
+ "bullet" => [0x02022],
775
+ "bump" => [0x0224E],
776
+ "bumpE" => [0x02AAE],
777
+ "bumpe" => [0x0224F],
778
+ "bumpeq" => [0x0224F],
779
+ "cacute" => [0x00107],
780
+ "cap" => [0x02229],
781
+ "capand" => [0x02A44],
782
+ "capbrcup" => [0x02A49],
783
+ "capcap" => [0x02A4B],
784
+ "capcup" => [0x02A47],
785
+ "capdot" => [0x02A40],
786
+ "caps" => [0x02229, 0x0FE00],
787
+ "caret" => [0x02041],
788
+ "caron" => [0x002C7],
789
+ "ccaps" => [0x02A4D],
790
+ "ccaron" => [0x0010D],
791
+ "ccedil" => [0x000E7],
792
+ "ccirc" => [0x00109],
793
+ "ccups" => [0x02A4C],
794
+ "ccupssm" => [0x02A50],
795
+ "cdot" => [0x0010B],
796
+ "cedil" => [0x000B8],
797
+ "cemptyv" => [0x029B2],
798
+ "cent" => [0x000A2],
799
+ "centerdot" => [0x000B7],
800
+ "cfr" => [0x1D520],
801
+ "chcy" => [0x00447],
802
+ "check" => [0x02713],
803
+ "checkmark" => [0x02713],
804
+ "chi" => [0x003C7],
805
+ "cir" => [0x025CB],
806
+ "cirE" => [0x029C3],
807
+ "circ" => [0x002C6],
808
+ "circeq" => [0x02257],
809
+ "circlearrowleft" => [0x021BA],
810
+ "circlearrowright" => [0x021BB],
811
+ "circledR" => [0x000AE],
812
+ "circledS" => [0x024C8],
813
+ "circledast" => [0x0229B],
814
+ "circledcirc" => [0x0229A],
815
+ "circleddash" => [0x0229D],
816
+ "cire" => [0x02257],
817
+ "cirfnint" => [0x02A10],
818
+ "cirmid" => [0x02AEF],
819
+ "cirscir" => [0x029C2],
820
+ "clubs" => [0x02663],
821
+ "clubsuit" => [0x02663],
822
+ "colon" => [0x0003A],
823
+ "colone" => [0x02254],
824
+ "coloneq" => [0x02254],
825
+ "comma" => [0x0002C],
826
+ "commat" => [0x00040],
827
+ "comp" => [0x02201],
828
+ "compfn" => [0x02218],
829
+ "complement" => [0x02201],
830
+ "complexes" => [0x02102],
831
+ "cong" => [0x02245],
832
+ "congdot" => [0x02A6D],
833
+ "conint" => [0x0222E],
834
+ "copf" => [0x1D554],
835
+ "coprod" => [0x02210],
836
+ "copy" => [0x000A9],
837
+ "copysr" => [0x02117],
838
+ "crarr" => [0x021B5],
839
+ "cross" => [0x02717],
840
+ "cscr" => [0x1D4B8],
841
+ "csub" => [0x02ACF],
842
+ "csube" => [0x02AD1],
843
+ "csup" => [0x02AD0],
844
+ "csupe" => [0x02AD2],
845
+ "ctdot" => [0x022EF],
846
+ "cudarrl" => [0x02938],
847
+ "cudarrr" => [0x02935],
848
+ "cuepr" => [0x022DE],
849
+ "cuesc" => [0x022DF],
850
+ "cularr" => [0x021B6],
851
+ "cularrp" => [0x0293D],
852
+ "cup" => [0x0222A],
853
+ "cupbrcap" => [0x02A48],
854
+ "cupcap" => [0x02A46],
855
+ "cupcup" => [0x02A4A],
856
+ "cupdot" => [0x0228D],
857
+ "cupor" => [0x02A45],
858
+ "cups" => [0x0222A, 0x0FE00],
859
+ "curarr" => [0x021B7],
860
+ "curarrm" => [0x0293C],
861
+ "curlyeqprec" => [0x022DE],
862
+ "curlyeqsucc" => [0x022DF],
863
+ "curlyvee" => [0x022CE],
864
+ "curlywedge" => [0x022CF],
865
+ "curren" => [0x000A4],
866
+ "curvearrowleft" => [0x021B6],
867
+ "curvearrowright" => [0x021B7],
868
+ "cuvee" => [0x022CE],
869
+ "cuwed" => [0x022CF],
870
+ "cwconint" => [0x02232],
871
+ "cwint" => [0x02231],
872
+ "cylcty" => [0x0232D],
873
+ "dArr" => [0x021D3],
874
+ "dHar" => [0x02965],
875
+ "dagger" => [0x02020],
876
+ "daleth" => [0x02138],
877
+ "darr" => [0x02193],
878
+ "dash" => [0x02010],
879
+ "dashv" => [0x022A3],
880
+ "dbkarow" => [0x0290F],
881
+ "dblac" => [0x002DD],
882
+ "dcaron" => [0x0010F],
883
+ "dcy" => [0x00434],
884
+ "dd" => [0x02146],
885
+ "ddagger" => [0x02021],
886
+ "ddarr" => [0x021CA],
887
+ "ddotseq" => [0x02A77],
888
+ "deg" => [0x000B0],
889
+ "delta" => [0x003B4],
890
+ "demptyv" => [0x029B1],
891
+ "dfisht" => [0x0297F],
892
+ "dfr" => [0x1D521],
893
+ "dharl" => [0x021C3],
894
+ "dharr" => [0x021C2],
895
+ "diam" => [0x022C4],
896
+ "diamond" => [0x022C4],
897
+ "diamondsuit" => [0x02666],
898
+ "diams" => [0x02666],
899
+ "die" => [0x000A8],
900
+ "digamma" => [0x003DD],
901
+ "disin" => [0x022F2],
902
+ "div" => [0x000F7],
903
+ "divide" => [0x000F7],
904
+ "divideontimes" => [0x022C7],
905
+ "divonx" => [0x022C7],
906
+ "djcy" => [0x00452],
907
+ "dlcorn" => [0x0231E],
908
+ "dlcrop" => [0x0230D],
909
+ "dollar" => [0x00024],
910
+ "dopf" => [0x1D555],
911
+ "dot" => [0x002D9],
912
+ "doteq" => [0x02250],
913
+ "doteqdot" => [0x02251],
914
+ "dotminus" => [0x02238],
915
+ "dotplus" => [0x02214],
916
+ "dotsquare" => [0x022A1],
917
+ "doublebarwedge" => [0x02306],
918
+ "downarrow" => [0x02193],
919
+ "downdownarrows" => [0x021CA],
920
+ "downharpoonleft" => [0x021C3],
921
+ "downharpoonright" => [0x021C2],
922
+ "drbkarow" => [0x02910],
923
+ "drcorn" => [0x0231F],
924
+ "drcrop" => [0x0230C],
925
+ "dscr" => [0x1D4B9],
926
+ "dscy" => [0x00455],
927
+ "dsol" => [0x029F6],
928
+ "dstrok" => [0x00111],
929
+ "dtdot" => [0x022F1],
930
+ "dtri" => [0x025BF],
931
+ "dtrif" => [0x025BE],
932
+ "duarr" => [0x021F5],
933
+ "duhar" => [0x0296F],
934
+ "dwangle" => [0x029A6],
935
+ "dzcy" => [0x0045F],
936
+ "dzigrarr" => [0x027FF],
937
+ "eDDot" => [0x02A77],
938
+ "eDot" => [0x02251],
939
+ "eacute" => [0x000E9],
940
+ "easter" => [0x02A6E],
941
+ "ecaron" => [0x0011B],
942
+ "ecir" => [0x02256],
943
+ "ecirc" => [0x000EA],
944
+ "ecolon" => [0x02255],
945
+ "ecy" => [0x0044D],
946
+ "edot" => [0x00117],
947
+ "ee" => [0x02147],
948
+ "efDot" => [0x02252],
949
+ "efr" => [0x1D522],
950
+ "eg" => [0x02A9A],
951
+ "egrave" => [0x000E8],
952
+ "egs" => [0x02A96],
953
+ "egsdot" => [0x02A98],
954
+ "el" => [0x02A99],
955
+ "elinters" => [0x023E7],
956
+ "ell" => [0x02113],
957
+ "els" => [0x02A95],
958
+ "elsdot" => [0x02A97],
959
+ "emacr" => [0x00113],
960
+ "empty" => [0x02205],
961
+ "emptyset" => [0x02205],
962
+ "emptyv" => [0x02205],
963
+ "emsp" => [0x02003],
964
+ "emsp13" => [0x02004],
965
+ "emsp14" => [0x02005],
966
+ "eng" => [0x0014B],
967
+ "ensp" => [0x02002],
968
+ "eogon" => [0x00119],
969
+ "eopf" => [0x1D556],
970
+ "epar" => [0x022D5],
971
+ "eparsl" => [0x029E3],
972
+ "eplus" => [0x02A71],
973
+ "epsi" => [0x003B5],
974
+ "epsilon" => [0x003B5],
975
+ "epsiv" => [0x003F5],
976
+ "eqcirc" => [0x02256],
977
+ "eqcolon" => [0x02255],
978
+ "eqsim" => [0x02242],
979
+ "eqslantgtr" => [0x02A96],
980
+ "eqslantless" => [0x02A95],
981
+ "equals" => [0x0003D],
982
+ "equest" => [0x0225F],
983
+ "equiv" => [0x02261],
984
+ "equivDD" => [0x02A78],
985
+ "eqvparsl" => [0x029E5],
986
+ "erDot" => [0x02253],
987
+ "erarr" => [0x02971],
988
+ "escr" => [0x0212F],
989
+ "esdot" => [0x02250],
990
+ "esim" => [0x02242],
991
+ "eta" => [0x003B7],
992
+ "eth" => [0x000F0],
993
+ "euml" => [0x000EB],
994
+ "euro" => [0x020AC],
995
+ "excl" => [0x00021],
996
+ "exist" => [0x02203],
997
+ "expectation" => [0x02130],
998
+ "exponentiale" => [0x02147],
999
+ "fallingdotseq" => [0x02252],
1000
+ "fcy" => [0x00444],
1001
+ "female" => [0x02640],
1002
+ "ffilig" => [0x0FB03],
1003
+ "fflig" => [0x0FB00],
1004
+ "ffllig" => [0x0FB04],
1005
+ "ffr" => [0x1D523],
1006
+ "filig" => [0x0FB01],
1007
+ "fjlig" => [0x00066, 0x0006A],
1008
+ "flat" => [0x0266D],
1009
+ "fllig" => [0x0FB02],
1010
+ "fltns" => [0x025B1],
1011
+ "fnof" => [0x00192],
1012
+ "fopf" => [0x1D557],
1013
+ "forall" => [0x02200],
1014
+ "fork" => [0x022D4],
1015
+ "forkv" => [0x02AD9],
1016
+ "fpartint" => [0x02A0D],
1017
+ "frac12" => [0x000BD],
1018
+ "frac13" => [0x02153],
1019
+ "frac14" => [0x000BC],
1020
+ "frac15" => [0x02155],
1021
+ "frac16" => [0x02159],
1022
+ "frac18" => [0x0215B],
1023
+ "frac23" => [0x02154],
1024
+ "frac25" => [0x02156],
1025
+ "frac34" => [0x000BE],
1026
+ "frac35" => [0x02157],
1027
+ "frac38" => [0x0215C],
1028
+ "frac45" => [0x02158],
1029
+ "frac56" => [0x0215A],
1030
+ "frac58" => [0x0215D],
1031
+ "frac78" => [0x0215E],
1032
+ "frasl" => [0x02044],
1033
+ "frown" => [0x02322],
1034
+ "fscr" => [0x1D4BB],
1035
+ "gE" => [0x02267],
1036
+ "gEl" => [0x02A8C],
1037
+ "gacute" => [0x001F5],
1038
+ "gamma" => [0x003B3],
1039
+ "gammad" => [0x003DD],
1040
+ "gap" => [0x02A86],
1041
+ "gbreve" => [0x0011F],
1042
+ "gcirc" => [0x0011D],
1043
+ "gcy" => [0x00433],
1044
+ "gdot" => [0x00121],
1045
+ "ge" => [0x02265],
1046
+ "gel" => [0x022DB],
1047
+ "geq" => [0x02265],
1048
+ "geqq" => [0x02267],
1049
+ "geqslant" => [0x02A7E],
1050
+ "ges" => [0x02A7E],
1051
+ "gescc" => [0x02AA9],
1052
+ "gesdot" => [0x02A80],
1053
+ "gesdoto" => [0x02A82],
1054
+ "gesdotol" => [0x02A84],
1055
+ "gesl" => [0x022DB, 0x0FE00],
1056
+ "gesles" => [0x02A94],
1057
+ "gfr" => [0x1D524],
1058
+ "gg" => [0x0226B],
1059
+ "ggg" => [0x022D9],
1060
+ "gimel" => [0x02137],
1061
+ "gjcy" => [0x00453],
1062
+ "gl" => [0x02277],
1063
+ "glE" => [0x02A92],
1064
+ "gla" => [0x02AA5],
1065
+ "glj" => [0x02AA4],
1066
+ "gnE" => [0x02269],
1067
+ "gnap" => [0x02A8A],
1068
+ "gnapprox" => [0x02A8A],
1069
+ "gne" => [0x02A88],
1070
+ "gneq" => [0x02A88],
1071
+ "gneqq" => [0x02269],
1072
+ "gnsim" => [0x022E7],
1073
+ "gopf" => [0x1D558],
1074
+ "grave" => [0x00060],
1075
+ "gscr" => [0x0210A],
1076
+ "gsim" => [0x02273],
1077
+ "gsime" => [0x02A8E],
1078
+ "gsiml" => [0x02A90],
1079
+ "gt" => [0x0003E],
1080
+ "gtcc" => [0x02AA7],
1081
+ "gtcir" => [0x02A7A],
1082
+ "gtdot" => [0x022D7],
1083
+ "gtlPar" => [0x02995],
1084
+ "gtquest" => [0x02A7C],
1085
+ "gtrapprox" => [0x02A86],
1086
+ "gtrarr" => [0x02978],
1087
+ "gtrdot" => [0x022D7],
1088
+ "gtreqless" => [0x022DB],
1089
+ "gtreqqless" => [0x02A8C],
1090
+ "gtrless" => [0x02277],
1091
+ "gtrsim" => [0x02273],
1092
+ "gvertneqq" => [0x02269, 0x0FE00],
1093
+ "gvnE" => [0x02269, 0x0FE00],
1094
+ "hArr" => [0x021D4],
1095
+ "hairsp" => [0x0200A],
1096
+ "half" => [0x000BD],
1097
+ "hamilt" => [0x0210B],
1098
+ "hardcy" => [0x0044A],
1099
+ "harr" => [0x02194],
1100
+ "harrcir" => [0x02948],
1101
+ "harrw" => [0x021AD],
1102
+ "hbar" => [0x0210F],
1103
+ "hcirc" => [0x00125],
1104
+ "hearts" => [0x02665],
1105
+ "heartsuit" => [0x02665],
1106
+ "hellip" => [0x02026],
1107
+ "hercon" => [0x022B9],
1108
+ "hfr" => [0x1D525],
1109
+ "hksearow" => [0x02925],
1110
+ "hkswarow" => [0x02926],
1111
+ "hoarr" => [0x021FF],
1112
+ "homtht" => [0x0223B],
1113
+ "hookleftarrow" => [0x021A9],
1114
+ "hookrightarrow" => [0x021AA],
1115
+ "hopf" => [0x1D559],
1116
+ "horbar" => [0x02015],
1117
+ "hscr" => [0x1D4BD],
1118
+ "hslash" => [0x0210F],
1119
+ "hstrok" => [0x00127],
1120
+ "hybull" => [0x02043],
1121
+ "hyphen" => [0x02010],
1122
+ "iacute" => [0x000ED],
1123
+ "ic" => [0x02063],
1124
+ "icirc" => [0x000EE],
1125
+ "icy" => [0x00438],
1126
+ "iecy" => [0x00435],
1127
+ "iexcl" => [0x000A1],
1128
+ "iff" => [0x021D4],
1129
+ "ifr" => [0x1D526],
1130
+ "igrave" => [0x000EC],
1131
+ "ii" => [0x02148],
1132
+ "iiiint" => [0x02A0C],
1133
+ "iiint" => [0x0222D],
1134
+ "iinfin" => [0x029DC],
1135
+ "iiota" => [0x02129],
1136
+ "ijlig" => [0x00133],
1137
+ "imacr" => [0x0012B],
1138
+ "image" => [0x02111],
1139
+ "imagline" => [0x02110],
1140
+ "imagpart" => [0x02111],
1141
+ "imath" => [0x00131],
1142
+ "imof" => [0x022B7],
1143
+ "imped" => [0x001B5],
1144
+ "in" => [0x02208],
1145
+ "incare" => [0x02105],
1146
+ "infin" => [0x0221E],
1147
+ "infintie" => [0x029DD],
1148
+ "inodot" => [0x00131],
1149
+ "int" => [0x0222B],
1150
+ "intcal" => [0x022BA],
1151
+ "integers" => [0x02124],
1152
+ "intercal" => [0x022BA],
1153
+ "intlarhk" => [0x02A17],
1154
+ "intprod" => [0x02A3C],
1155
+ "iocy" => [0x00451],
1156
+ "iogon" => [0x0012F],
1157
+ "iopf" => [0x1D55A],
1158
+ "iota" => [0x003B9],
1159
+ "iprod" => [0x02A3C],
1160
+ "iquest" => [0x000BF],
1161
+ "iscr" => [0x1D4BE],
1162
+ "isin" => [0x02208],
1163
+ "isinE" => [0x022F9],
1164
+ "isindot" => [0x022F5],
1165
+ "isins" => [0x022F4],
1166
+ "isinsv" => [0x022F3],
1167
+ "isinv" => [0x02208],
1168
+ "it" => [0x02062],
1169
+ "itilde" => [0x00129],
1170
+ "iukcy" => [0x00456],
1171
+ "iuml" => [0x000EF],
1172
+ "jcirc" => [0x00135],
1173
+ "jcy" => [0x00439],
1174
+ "jfr" => [0x1D527],
1175
+ "jmath" => [0x00237],
1176
+ "jopf" => [0x1D55B],
1177
+ "jscr" => [0x1D4BF],
1178
+ "jsercy" => [0x00458],
1179
+ "jukcy" => [0x00454],
1180
+ "kappa" => [0x003BA],
1181
+ "kappav" => [0x003F0],
1182
+ "kcedil" => [0x00137],
1183
+ "kcy" => [0x0043A],
1184
+ "kfr" => [0x1D528],
1185
+ "kgreen" => [0x00138],
1186
+ "khcy" => [0x00445],
1187
+ "kjcy" => [0x0045C],
1188
+ "kopf" => [0x1D55C],
1189
+ "kscr" => [0x1D4C0],
1190
+ "lAarr" => [0x021DA],
1191
+ "lArr" => [0x021D0],
1192
+ "lAtail" => [0x0291B],
1193
+ "lBarr" => [0x0290E],
1194
+ "lE" => [0x02266],
1195
+ "lEg" => [0x02A8B],
1196
+ "lHar" => [0x02962],
1197
+ "lacute" => [0x0013A],
1198
+ "laemptyv" => [0x029B4],
1199
+ "lagran" => [0x02112],
1200
+ "lambda" => [0x003BB],
1201
+ "lang" => [0x027E8],
1202
+ "langd" => [0x02991],
1203
+ "langle" => [0x027E8],
1204
+ "lap" => [0x02A85],
1205
+ "laquo" => [0x000AB],
1206
+ "larr" => [0x02190],
1207
+ "larrb" => [0x021E4],
1208
+ "larrbfs" => [0x0291F],
1209
+ "larrfs" => [0x0291D],
1210
+ "larrhk" => [0x021A9],
1211
+ "larrlp" => [0x021AB],
1212
+ "larrpl" => [0x02939],
1213
+ "larrsim" => [0x02973],
1214
+ "larrtl" => [0x021A2],
1215
+ "lat" => [0x02AAB],
1216
+ "latail" => [0x02919],
1217
+ "late" => [0x02AAD],
1218
+ "lates" => [0x02AAD, 0x0FE00],
1219
+ "lbarr" => [0x0290C],
1220
+ "lbbrk" => [0x02772],
1221
+ "lbrace" => [0x0007B],
1222
+ "lbrack" => [0x0005B],
1223
+ "lbrke" => [0x0298B],
1224
+ "lbrksld" => [0x0298F],
1225
+ "lbrkslu" => [0x0298D],
1226
+ "lcaron" => [0x0013E],
1227
+ "lcedil" => [0x0013C],
1228
+ "lceil" => [0x02308],
1229
+ "lcub" => [0x0007B],
1230
+ "lcy" => [0x0043B],
1231
+ "ldca" => [0x02936],
1232
+ "ldquo" => [0x0201C],
1233
+ "ldquor" => [0x0201E],
1234
+ "ldrdhar" => [0x02967],
1235
+ "ldrushar" => [0x0294B],
1236
+ "ldsh" => [0x021B2],
1237
+ "le" => [0x02264],
1238
+ "leftarrow" => [0x02190],
1239
+ "leftarrowtail" => [0x021A2],
1240
+ "leftharpoondown" => [0x021BD],
1241
+ "leftharpoonup" => [0x021BC],
1242
+ "leftleftarrows" => [0x021C7],
1243
+ "leftrightarrow" => [0x02194],
1244
+ "leftrightarrows" => [0x021C6],
1245
+ "leftrightharpoons" => [0x021CB],
1246
+ "leftrightsquigarrow" => [0x021AD],
1247
+ "leftthreetimes" => [0x022CB],
1248
+ "leg" => [0x022DA],
1249
+ "leq" => [0x02264],
1250
+ "leqq" => [0x02266],
1251
+ "leqslant" => [0x02A7D],
1252
+ "les" => [0x02A7D],
1253
+ "lescc" => [0x02AA8],
1254
+ "lesdot" => [0x02A7F],
1255
+ "lesdoto" => [0x02A81],
1256
+ "lesdotor" => [0x02A83],
1257
+ "lesg" => [0x022DA, 0x0FE00],
1258
+ "lesges" => [0x02A93],
1259
+ "lessapprox" => [0x02A85],
1260
+ "lessdot" => [0x022D6],
1261
+ "lesseqgtr" => [0x022DA],
1262
+ "lesseqqgtr" => [0x02A8B],
1263
+ "lessgtr" => [0x02276],
1264
+ "lesssim" => [0x02272],
1265
+ "lfisht" => [0x0297C],
1266
+ "lfloor" => [0x0230A],
1267
+ "lfr" => [0x1D529],
1268
+ "lg" => [0x02276],
1269
+ "lgE" => [0x02A91],
1270
+ "lhard" => [0x021BD],
1271
+ "lharu" => [0x021BC],
1272
+ "lharul" => [0x0296A],
1273
+ "lhblk" => [0x02584],
1274
+ "ljcy" => [0x00459],
1275
+ "ll" => [0x0226A],
1276
+ "llarr" => [0x021C7],
1277
+ "llcorner" => [0x0231E],
1278
+ "llhard" => [0x0296B],
1279
+ "lltri" => [0x025FA],
1280
+ "lmidot" => [0x00140],
1281
+ "lmoust" => [0x023B0],
1282
+ "lmoustache" => [0x023B0],
1283
+ "lnE" => [0x02268],
1284
+ "lnap" => [0x02A89],
1285
+ "lnapprox" => [0x02A89],
1286
+ "lne" => [0x02A87],
1287
+ "lneq" => [0x02A87],
1288
+ "lneqq" => [0x02268],
1289
+ "lnsim" => [0x022E6],
1290
+ "loang" => [0x027EC],
1291
+ "loarr" => [0x021FD],
1292
+ "lobrk" => [0x027E6],
1293
+ "longleftarrow" => [0x027F5],
1294
+ "longleftrightarrow" => [0x027F7],
1295
+ "longmapsto" => [0x027FC],
1296
+ "longrightarrow" => [0x027F6],
1297
+ "looparrowleft" => [0x021AB],
1298
+ "looparrowright" => [0x021AC],
1299
+ "lopar" => [0x02985],
1300
+ "lopf" => [0x1D55D],
1301
+ "loplus" => [0x02A2D],
1302
+ "lotimes" => [0x02A34],
1303
+ "lowast" => [0x02217],
1304
+ "lowbar" => [0x0005F],
1305
+ "loz" => [0x025CA],
1306
+ "lozenge" => [0x025CA],
1307
+ "lozf" => [0x029EB],
1308
+ "lpar" => [0x00028],
1309
+ "lparlt" => [0x02993],
1310
+ "lrarr" => [0x021C6],
1311
+ "lrcorner" => [0x0231F],
1312
+ "lrhar" => [0x021CB],
1313
+ "lrhard" => [0x0296D],
1314
+ "lrm" => [0x0200E],
1315
+ "lrtri" => [0x022BF],
1316
+ "lsaquo" => [0x02039],
1317
+ "lscr" => [0x1D4C1],
1318
+ "lsh" => [0x021B0],
1319
+ "lsim" => [0x02272],
1320
+ "lsime" => [0x02A8D],
1321
+ "lsimg" => [0x02A8F],
1322
+ "lsqb" => [0x0005B],
1323
+ "lsquo" => [0x02018],
1324
+ "lsquor" => [0x0201A],
1325
+ "lstrok" => [0x00142],
1326
+ "lt" => [0x0003C],
1327
+ "ltcc" => [0x02AA6],
1328
+ "ltcir" => [0x02A79],
1329
+ "ltdot" => [0x022D6],
1330
+ "lthree" => [0x022CB],
1331
+ "ltimes" => [0x022C9],
1332
+ "ltlarr" => [0x02976],
1333
+ "ltquest" => [0x02A7B],
1334
+ "ltrPar" => [0x02996],
1335
+ "ltri" => [0x025C3],
1336
+ "ltrie" => [0x022B4],
1337
+ "ltrif" => [0x025C2],
1338
+ "lurdshar" => [0x0294A],
1339
+ "luruhar" => [0x02966],
1340
+ "lvertneqq" => [0x02268, 0x0FE00],
1341
+ "lvnE" => [0x02268, 0x0FE00],
1342
+ "mDDot" => [0x0223A],
1343
+ "macr" => [0x000AF],
1344
+ "male" => [0x02642],
1345
+ "malt" => [0x02720],
1346
+ "maltese" => [0x02720],
1347
+ "map" => [0x021A6],
1348
+ "mapsto" => [0x021A6],
1349
+ "mapstodown" => [0x021A7],
1350
+ "mapstoleft" => [0x021A4],
1351
+ "mapstoup" => [0x021A5],
1352
+ "marker" => [0x025AE],
1353
+ "mcomma" => [0x02A29],
1354
+ "mcy" => [0x0043C],
1355
+ "mdash" => [0x02014],
1356
+ "measuredangle" => [0x02221],
1357
+ "mfr" => [0x1D52A],
1358
+ "mho" => [0x02127],
1359
+ "micro" => [0x000B5],
1360
+ "mid" => [0x02223],
1361
+ "midast" => [0x0002A],
1362
+ "midcir" => [0x02AF0],
1363
+ "middot" => [0x000B7],
1364
+ "minus" => [0x02212],
1365
+ "minusb" => [0x0229F],
1366
+ "minusd" => [0x02238],
1367
+ "minusdu" => [0x02A2A],
1368
+ "mlcp" => [0x02ADB],
1369
+ "mldr" => [0x02026],
1370
+ "mnplus" => [0x02213],
1371
+ "models" => [0x022A7],
1372
+ "mopf" => [0x1D55E],
1373
+ "mp" => [0x02213],
1374
+ "mscr" => [0x1D4C2],
1375
+ "mstpos" => [0x0223E],
1376
+ "mu" => [0x003BC],
1377
+ "multimap" => [0x022B8],
1378
+ "mumap" => [0x022B8],
1379
+ "nGg" => [0x022D9, 0x00338],
1380
+ "nGt" => [0x0226B, 0x020D2],
1381
+ "nGtv" => [0x0226B, 0x00338],
1382
+ "nLeftarrow" => [0x021CD],
1383
+ "nLeftrightarrow" => [0x021CE],
1384
+ "nLl" => [0x022D8, 0x00338],
1385
+ "nLt" => [0x0226A, 0x020D2],
1386
+ "nLtv" => [0x0226A, 0x00338],
1387
+ "nRightarrow" => [0x021CF],
1388
+ "nVDash" => [0x022AF],
1389
+ "nVdash" => [0x022AE],
1390
+ "nabla" => [0x02207],
1391
+ "nacute" => [0x00144],
1392
+ "nang" => [0x02220, 0x020D2],
1393
+ "nap" => [0x02249],
1394
+ "napE" => [0x02A70, 0x00338],
1395
+ "napid" => [0x0224B, 0x00338],
1396
+ "napos" => [0x00149],
1397
+ "napprox" => [0x02249],
1398
+ "natur" => [0x0266E],
1399
+ "natural" => [0x0266E],
1400
+ "naturals" => [0x02115],
1401
+ "nbsp" => [0x000A0],
1402
+ "nbump" => [0x0224E, 0x00338],
1403
+ "nbumpe" => [0x0224F, 0x00338],
1404
+ "ncap" => [0x02A43],
1405
+ "ncaron" => [0x00148],
1406
+ "ncedil" => [0x00146],
1407
+ "ncong" => [0x02247],
1408
+ "ncongdot" => [0x02A6D, 0x00338],
1409
+ "ncup" => [0x02A42],
1410
+ "ncy" => [0x0043D],
1411
+ "ndash" => [0x02013],
1412
+ "ne" => [0x02260],
1413
+ "neArr" => [0x021D7],
1414
+ "nearhk" => [0x02924],
1415
+ "nearr" => [0x02197],
1416
+ "nearrow" => [0x02197],
1417
+ "nedot" => [0x02250, 0x00338],
1418
+ "nequiv" => [0x02262],
1419
+ "nesear" => [0x02928],
1420
+ "nesim" => [0x02242, 0x00338],
1421
+ "nexist" => [0x02204],
1422
+ "nexists" => [0x02204],
1423
+ "nfr" => [0x1D52B],
1424
+ "ngE" => [0x02267, 0x00338],
1425
+ "nge" => [0x02271],
1426
+ "ngeq" => [0x02271],
1427
+ "ngeqq" => [0x02267, 0x00338],
1428
+ "ngeqslant" => [0x02A7E, 0x00338],
1429
+ "nges" => [0x02A7E, 0x00338],
1430
+ "ngsim" => [0x02275],
1431
+ "ngt" => [0x0226F],
1432
+ "ngtr" => [0x0226F],
1433
+ "nhArr" => [0x021CE],
1434
+ "nharr" => [0x021AE],
1435
+ "nhpar" => [0x02AF2],
1436
+ "ni" => [0x0220B],
1437
+ "nis" => [0x022FC],
1438
+ "nisd" => [0x022FA],
1439
+ "niv" => [0x0220B],
1440
+ "njcy" => [0x0045A],
1441
+ "nlArr" => [0x021CD],
1442
+ "nlE" => [0x02266, 0x00338],
1443
+ "nlarr" => [0x0219A],
1444
+ "nldr" => [0x02025],
1445
+ "nle" => [0x02270],
1446
+ "nleftarrow" => [0x0219A],
1447
+ "nleftrightarrow" => [0x021AE],
1448
+ "nleq" => [0x02270],
1449
+ "nleqq" => [0x02266, 0x00338],
1450
+ "nleqslant" => [0x02A7D, 0x00338],
1451
+ "nles" => [0x02A7D, 0x00338],
1452
+ "nless" => [0x0226E],
1453
+ "nlsim" => [0x02274],
1454
+ "nlt" => [0x0226E],
1455
+ "nltri" => [0x022EA],
1456
+ "nltrie" => [0x022EC],
1457
+ "nmid" => [0x02224],
1458
+ "nopf" => [0x1D55F],
1459
+ "not" => [0x000AC],
1460
+ "notin" => [0x02209],
1461
+ "notinE" => [0x022F9, 0x00338],
1462
+ "notindot" => [0x022F5, 0x00338],
1463
+ "notinva" => [0x02209],
1464
+ "notinvb" => [0x022F7],
1465
+ "notinvc" => [0x022F6],
1466
+ "notni" => [0x0220C],
1467
+ "notniva" => [0x0220C],
1468
+ "notnivb" => [0x022FE],
1469
+ "notnivc" => [0x022FD],
1470
+ "npar" => [0x02226],
1471
+ "nparallel" => [0x02226],
1472
+ "nparsl" => [0x02AFD, 0x020E5],
1473
+ "npart" => [0x02202, 0x00338],
1474
+ "npolint" => [0x02A14],
1475
+ "npr" => [0x02280],
1476
+ "nprcue" => [0x022E0],
1477
+ "npre" => [0x02AAF, 0x00338],
1478
+ "nprec" => [0x02280],
1479
+ "npreceq" => [0x02AAF, 0x00338],
1480
+ "nrArr" => [0x021CF],
1481
+ "nrarr" => [0x0219B],
1482
+ "nrarrc" => [0x02933, 0x00338],
1483
+ "nrarrw" => [0x0219D, 0x00338],
1484
+ "nrightarrow" => [0x0219B],
1485
+ "nrtri" => [0x022EB],
1486
+ "nrtrie" => [0x022ED],
1487
+ "nsc" => [0x02281],
1488
+ "nsccue" => [0x022E1],
1489
+ "nsce" => [0x02AB0, 0x00338],
1490
+ "nscr" => [0x1D4C3],
1491
+ "nshortmid" => [0x02224],
1492
+ "nshortparallel" => [0x02226],
1493
+ "nsim" => [0x02241],
1494
+ "nsime" => [0x02244],
1495
+ "nsimeq" => [0x02244],
1496
+ "nsmid" => [0x02224],
1497
+ "nspar" => [0x02226],
1498
+ "nsqsube" => [0x022E2],
1499
+ "nsqsupe" => [0x022E3],
1500
+ "nsub" => [0x02284],
1501
+ "nsubE" => [0x02AC5, 0x00338],
1502
+ "nsube" => [0x02288],
1503
+ "nsubset" => [0x02282, 0x020D2],
1504
+ "nsubseteq" => [0x02288],
1505
+ "nsubseteqq" => [0x02AC5, 0x00338],
1506
+ "nsucc" => [0x02281],
1507
+ "nsucceq" => [0x02AB0, 0x00338],
1508
+ "nsup" => [0x02285],
1509
+ "nsupE" => [0x02AC6, 0x00338],
1510
+ "nsupe" => [0x02289],
1511
+ "nsupset" => [0x02283, 0x020D2],
1512
+ "nsupseteq" => [0x02289],
1513
+ "nsupseteqq" => [0x02AC6, 0x00338],
1514
+ "ntgl" => [0x02279],
1515
+ "ntilde" => [0x000F1],
1516
+ "ntlg" => [0x02278],
1517
+ "ntriangleleft" => [0x022EA],
1518
+ "ntrianglelefteq" => [0x022EC],
1519
+ "ntriangleright" => [0x022EB],
1520
+ "ntrianglerighteq" => [0x022ED],
1521
+ "nu" => [0x003BD],
1522
+ "num" => [0x00023],
1523
+ "numero" => [0x02116],
1524
+ "numsp" => [0x02007],
1525
+ "nvDash" => [0x022AD],
1526
+ "nvHarr" => [0x02904],
1527
+ "nvap" => [0x0224D, 0x020D2],
1528
+ "nvdash" => [0x022AC],
1529
+ "nvge" => [0x02265, 0x020D2],
1530
+ "nvgt" => [0x0003E, 0x020D2],
1531
+ "nvinfin" => [0x029DE],
1532
+ "nvlArr" => [0x02902],
1533
+ "nvle" => [0x02264, 0x020D2],
1534
+ "nvlt" => [0x0003C, 0x020D2],
1535
+ "nvltrie" => [0x022B4, 0x020D2],
1536
+ "nvrArr" => [0x02903],
1537
+ "nvrtrie" => [0x022B5, 0x020D2],
1538
+ "nvsim" => [0x0223C, 0x020D2],
1539
+ "nwArr" => [0x021D6],
1540
+ "nwarhk" => [0x02923],
1541
+ "nwarr" => [0x02196],
1542
+ "nwarrow" => [0x02196],
1543
+ "nwnear" => [0x02927],
1544
+ "oS" => [0x024C8],
1545
+ "oacute" => [0x000F3],
1546
+ "oast" => [0x0229B],
1547
+ "ocir" => [0x0229A],
1548
+ "ocirc" => [0x000F4],
1549
+ "ocy" => [0x0043E],
1550
+ "odash" => [0x0229D],
1551
+ "odblac" => [0x00151],
1552
+ "odiv" => [0x02A38],
1553
+ "odot" => [0x02299],
1554
+ "odsold" => [0x029BC],
1555
+ "oelig" => [0x00153],
1556
+ "ofcir" => [0x029BF],
1557
+ "ofr" => [0x1D52C],
1558
+ "ogon" => [0x002DB],
1559
+ "ograve" => [0x000F2],
1560
+ "ogt" => [0x029C1],
1561
+ "ohbar" => [0x029B5],
1562
+ "ohm" => [0x003A9],
1563
+ "oint" => [0x0222E],
1564
+ "olarr" => [0x021BA],
1565
+ "olcir" => [0x029BE],
1566
+ "olcross" => [0x029BB],
1567
+ "oline" => [0x0203E],
1568
+ "olt" => [0x029C0],
1569
+ "omacr" => [0x0014D],
1570
+ "omega" => [0x003C9],
1571
+ "omicron" => [0x003BF],
1572
+ "omid" => [0x029B6],
1573
+ "ominus" => [0x02296],
1574
+ "oopf" => [0x1D560],
1575
+ "opar" => [0x029B7],
1576
+ "operp" => [0x029B9],
1577
+ "oplus" => [0x02295],
1578
+ "or" => [0x02228],
1579
+ "orarr" => [0x021BB],
1580
+ "ord" => [0x02A5D],
1581
+ "order" => [0x02134],
1582
+ "orderof" => [0x02134],
1583
+ "ordf" => [0x000AA],
1584
+ "ordm" => [0x000BA],
1585
+ "origof" => [0x022B6],
1586
+ "oror" => [0x02A56],
1587
+ "orslope" => [0x02A57],
1588
+ "orv" => [0x02A5B],
1589
+ "oscr" => [0x02134],
1590
+ "oslash" => [0x000F8],
1591
+ "osol" => [0x02298],
1592
+ "otilde" => [0x000F5],
1593
+ "otimes" => [0x02297],
1594
+ "otimesas" => [0x02A36],
1595
+ "ouml" => [0x000F6],
1596
+ "ovbar" => [0x0233D],
1597
+ "par" => [0x02225],
1598
+ "para" => [0x000B6],
1599
+ "parallel" => [0x02225],
1600
+ "parsim" => [0x02AF3],
1601
+ "parsl" => [0x02AFD],
1602
+ "part" => [0x02202],
1603
+ "pcy" => [0x0043F],
1604
+ "percnt" => [0x00025],
1605
+ "period" => [0x0002E],
1606
+ "permil" => [0x02030],
1607
+ "perp" => [0x022A5],
1608
+ "pertenk" => [0x02031],
1609
+ "pfr" => [0x1D52D],
1610
+ "phi" => [0x003C6],
1611
+ "phiv" => [0x003D5],
1612
+ "phmmat" => [0x02133],
1613
+ "phone" => [0x0260E],
1614
+ "pi" => [0x003C0],
1615
+ "pitchfork" => [0x022D4],
1616
+ "piv" => [0x003D6],
1617
+ "planck" => [0x0210F],
1618
+ "planckh" => [0x0210E],
1619
+ "plankv" => [0x0210F],
1620
+ "plus" => [0x0002B],
1621
+ "plusacir" => [0x02A23],
1622
+ "plusb" => [0x0229E],
1623
+ "pluscir" => [0x02A22],
1624
+ "plusdo" => [0x02214],
1625
+ "plusdu" => [0x02A25],
1626
+ "pluse" => [0x02A72],
1627
+ "plusmn" => [0x000B1],
1628
+ "plussim" => [0x02A26],
1629
+ "plustwo" => [0x02A27],
1630
+ "pm" => [0x000B1],
1631
+ "pointint" => [0x02A15],
1632
+ "popf" => [0x1D561],
1633
+ "pound" => [0x000A3],
1634
+ "pr" => [0x0227A],
1635
+ "prE" => [0x02AB3],
1636
+ "prap" => [0x02AB7],
1637
+ "prcue" => [0x0227C],
1638
+ "pre" => [0x02AAF],
1639
+ "prec" => [0x0227A],
1640
+ "precapprox" => [0x02AB7],
1641
+ "preccurlyeq" => [0x0227C],
1642
+ "preceq" => [0x02AAF],
1643
+ "precnapprox" => [0x02AB9],
1644
+ "precneqq" => [0x02AB5],
1645
+ "precnsim" => [0x022E8],
1646
+ "precsim" => [0x0227E],
1647
+ "prime" => [0x02032],
1648
+ "primes" => [0x02119],
1649
+ "prnE" => [0x02AB5],
1650
+ "prnap" => [0x02AB9],
1651
+ "prnsim" => [0x022E8],
1652
+ "prod" => [0x0220F],
1653
+ "profalar" => [0x0232E],
1654
+ "profline" => [0x02312],
1655
+ "profsurf" => [0x02313],
1656
+ "prop" => [0x0221D],
1657
+ "propto" => [0x0221D],
1658
+ "prsim" => [0x0227E],
1659
+ "prurel" => [0x022B0],
1660
+ "pscr" => [0x1D4C5],
1661
+ "psi" => [0x003C8],
1662
+ "puncsp" => [0x02008],
1663
+ "qfr" => [0x1D52E],
1664
+ "qint" => [0x02A0C],
1665
+ "qopf" => [0x1D562],
1666
+ "qprime" => [0x02057],
1667
+ "qscr" => [0x1D4C6],
1668
+ "quaternions" => [0x0210D],
1669
+ "quatint" => [0x02A16],
1670
+ "quest" => [0x0003F],
1671
+ "questeq" => [0x0225F],
1672
+ "quot" => [0x00022],
1673
+ "rAarr" => [0x021DB],
1674
+ "rArr" => [0x021D2],
1675
+ "rAtail" => [0x0291C],
1676
+ "rBarr" => [0x0290F],
1677
+ "rHar" => [0x02964],
1678
+ "race" => [0x0223D, 0x00331],
1679
+ "racute" => [0x00155],
1680
+ "radic" => [0x0221A],
1681
+ "raemptyv" => [0x029B3],
1682
+ "rang" => [0x027E9],
1683
+ "rangd" => [0x02992],
1684
+ "range" => [0x029A5],
1685
+ "rangle" => [0x027E9],
1686
+ "raquo" => [0x000BB],
1687
+ "rarr" => [0x02192],
1688
+ "rarrap" => [0x02975],
1689
+ "rarrb" => [0x021E5],
1690
+ "rarrbfs" => [0x02920],
1691
+ "rarrc" => [0x02933],
1692
+ "rarrfs" => [0x0291E],
1693
+ "rarrhk" => [0x021AA],
1694
+ "rarrlp" => [0x021AC],
1695
+ "rarrpl" => [0x02945],
1696
+ "rarrsim" => [0x02974],
1697
+ "rarrtl" => [0x021A3],
1698
+ "rarrw" => [0x0219D],
1699
+ "ratail" => [0x0291A],
1700
+ "ratio" => [0x02236],
1701
+ "rationals" => [0x0211A],
1702
+ "rbarr" => [0x0290D],
1703
+ "rbbrk" => [0x02773],
1704
+ "rbrace" => [0x0007D],
1705
+ "rbrack" => [0x0005D],
1706
+ "rbrke" => [0x0298C],
1707
+ "rbrksld" => [0x0298E],
1708
+ "rbrkslu" => [0x02990],
1709
+ "rcaron" => [0x00159],
1710
+ "rcedil" => [0x00157],
1711
+ "rceil" => [0x02309],
1712
+ "rcub" => [0x0007D],
1713
+ "rcy" => [0x00440],
1714
+ "rdca" => [0x02937],
1715
+ "rdldhar" => [0x02969],
1716
+ "rdquo" => [0x0201D],
1717
+ "rdquor" => [0x0201D],
1718
+ "rdsh" => [0x021B3],
1719
+ "real" => [0x0211C],
1720
+ "realine" => [0x0211B],
1721
+ "realpart" => [0x0211C],
1722
+ "reals" => [0x0211D],
1723
+ "rect" => [0x025AD],
1724
+ "reg" => [0x000AE],
1725
+ "rfisht" => [0x0297D],
1726
+ "rfloor" => [0x0230B],
1727
+ "rfr" => [0x1D52F],
1728
+ "rhard" => [0x021C1],
1729
+ "rharu" => [0x021C0],
1730
+ "rharul" => [0x0296C],
1731
+ "rho" => [0x003C1],
1732
+ "rhov" => [0x003F1],
1733
+ "rightarrow" => [0x02192],
1734
+ "rightarrowtail" => [0x021A3],
1735
+ "rightharpoondown" => [0x021C1],
1736
+ "rightharpoonup" => [0x021C0],
1737
+ "rightleftarrows" => [0x021C4],
1738
+ "rightleftharpoons" => [0x021CC],
1739
+ "rightrightarrows" => [0x021C9],
1740
+ "rightsquigarrow" => [0x0219D],
1741
+ "rightthreetimes" => [0x022CC],
1742
+ "ring" => [0x002DA],
1743
+ "risingdotseq" => [0x02253],
1744
+ "rlarr" => [0x021C4],
1745
+ "rlhar" => [0x021CC],
1746
+ "rlm" => [0x0200F],
1747
+ "rmoust" => [0x023B1],
1748
+ "rmoustache" => [0x023B1],
1749
+ "rnmid" => [0x02AEE],
1750
+ "roang" => [0x027ED],
1751
+ "roarr" => [0x021FE],
1752
+ "robrk" => [0x027E7],
1753
+ "ropar" => [0x02986],
1754
+ "ropf" => [0x1D563],
1755
+ "roplus" => [0x02A2E],
1756
+ "rotimes" => [0x02A35],
1757
+ "rpar" => [0x00029],
1758
+ "rpargt" => [0x02994],
1759
+ "rppolint" => [0x02A12],
1760
+ "rrarr" => [0x021C9],
1761
+ "rsaquo" => [0x0203A],
1762
+ "rscr" => [0x1D4C7],
1763
+ "rsh" => [0x021B1],
1764
+ "rsqb" => [0x0005D],
1765
+ "rsquo" => [0x02019],
1766
+ "rsquor" => [0x02019],
1767
+ "rthree" => [0x022CC],
1768
+ "rtimes" => [0x022CA],
1769
+ "rtri" => [0x025B9],
1770
+ "rtrie" => [0x022B5],
1771
+ "rtrif" => [0x025B8],
1772
+ "rtriltri" => [0x029CE],
1773
+ "ruluhar" => [0x02968],
1774
+ "rx" => [0x0211E],
1775
+ "sacute" => [0x0015B],
1776
+ "sbquo" => [0x0201A],
1777
+ "sc" => [0x0227B],
1778
+ "scE" => [0x02AB4],
1779
+ "scap" => [0x02AB8],
1780
+ "scaron" => [0x00161],
1781
+ "sccue" => [0x0227D],
1782
+ "sce" => [0x02AB0],
1783
+ "scedil" => [0x0015F],
1784
+ "scirc" => [0x0015D],
1785
+ "scnE" => [0x02AB6],
1786
+ "scnap" => [0x02ABA],
1787
+ "scnsim" => [0x022E9],
1788
+ "scpolint" => [0x02A13],
1789
+ "scsim" => [0x0227F],
1790
+ "scy" => [0x00441],
1791
+ "sdot" => [0x022C5],
1792
+ "sdotb" => [0x022A1],
1793
+ "sdote" => [0x02A66],
1794
+ "seArr" => [0x021D8],
1795
+ "searhk" => [0x02925],
1796
+ "searr" => [0x02198],
1797
+ "searrow" => [0x02198],
1798
+ "sect" => [0x000A7],
1799
+ "semi" => [0x0003B],
1800
+ "seswar" => [0x02929],
1801
+ "setminus" => [0x02216],
1802
+ "setmn" => [0x02216],
1803
+ "sext" => [0x02736],
1804
+ "sfr" => [0x1D530],
1805
+ "sfrown" => [0x02322],
1806
+ "sharp" => [0x0266F],
1807
+ "shchcy" => [0x00449],
1808
+ "shcy" => [0x00448],
1809
+ "shortmid" => [0x02223],
1810
+ "shortparallel" => [0x02225],
1811
+ "shy" => [0x000AD],
1812
+ "sigma" => [0x003C3],
1813
+ "sigmaf" => [0x003C2],
1814
+ "sigmav" => [0x003C2],
1815
+ "sim" => [0x0223C],
1816
+ "simdot" => [0x02A6A],
1817
+ "sime" => [0x02243],
1818
+ "simeq" => [0x02243],
1819
+ "simg" => [0x02A9E],
1820
+ "simgE" => [0x02AA0],
1821
+ "siml" => [0x02A9D],
1822
+ "simlE" => [0x02A9F],
1823
+ "simne" => [0x02246],
1824
+ "simplus" => [0x02A24],
1825
+ "simrarr" => [0x02972],
1826
+ "slarr" => [0x02190],
1827
+ "smallsetminus" => [0x02216],
1828
+ "smashp" => [0x02A33],
1829
+ "smeparsl" => [0x029E4],
1830
+ "smid" => [0x02223],
1831
+ "smile" => [0x02323],
1832
+ "smt" => [0x02AAA],
1833
+ "smte" => [0x02AAC],
1834
+ "smtes" => [0x02AAC, 0x0FE00],
1835
+ "softcy" => [0x0044C],
1836
+ "sol" => [0x0002F],
1837
+ "solb" => [0x029C4],
1838
+ "solbar" => [0x0233F],
1839
+ "sopf" => [0x1D564],
1840
+ "spades" => [0x02660],
1841
+ "spadesuit" => [0x02660],
1842
+ "spar" => [0x02225],
1843
+ "sqcap" => [0x02293],
1844
+ "sqcaps" => [0x02293, 0x0FE00],
1845
+ "sqcup" => [0x02294],
1846
+ "sqcups" => [0x02294, 0x0FE00],
1847
+ "sqsub" => [0x0228F],
1848
+ "sqsube" => [0x02291],
1849
+ "sqsubset" => [0x0228F],
1850
+ "sqsubseteq" => [0x02291],
1851
+ "sqsup" => [0x02290],
1852
+ "sqsupe" => [0x02292],
1853
+ "sqsupset" => [0x02290],
1854
+ "sqsupseteq" => [0x02292],
1855
+ "squ" => [0x025A1],
1856
+ "square" => [0x025A1],
1857
+ "squarf" => [0x025AA],
1858
+ "squf" => [0x025AA],
1859
+ "srarr" => [0x02192],
1860
+ "sscr" => [0x1D4C8],
1861
+ "ssetmn" => [0x02216],
1862
+ "ssmile" => [0x02323],
1863
+ "sstarf" => [0x022C6],
1864
+ "star" => [0x02606],
1865
+ "starf" => [0x02605],
1866
+ "straightepsilon" => [0x003F5],
1867
+ "straightphi" => [0x003D5],
1868
+ "strns" => [0x000AF],
1869
+ "sub" => [0x02282],
1870
+ "subE" => [0x02AC5],
1871
+ "subdot" => [0x02ABD],
1872
+ "sube" => [0x02286],
1873
+ "subedot" => [0x02AC3],
1874
+ "submult" => [0x02AC1],
1875
+ "subnE" => [0x02ACB],
1876
+ "subne" => [0x0228A],
1877
+ "subplus" => [0x02ABF],
1878
+ "subrarr" => [0x02979],
1879
+ "subset" => [0x02282],
1880
+ "subseteq" => [0x02286],
1881
+ "subseteqq" => [0x02AC5],
1882
+ "subsetneq" => [0x0228A],
1883
+ "subsetneqq" => [0x02ACB],
1884
+ "subsim" => [0x02AC7],
1885
+ "subsub" => [0x02AD5],
1886
+ "subsup" => [0x02AD3],
1887
+ "succ" => [0x0227B],
1888
+ "succapprox" => [0x02AB8],
1889
+ "succcurlyeq" => [0x0227D],
1890
+ "succeq" => [0x02AB0],
1891
+ "succnapprox" => [0x02ABA],
1892
+ "succneqq" => [0x02AB6],
1893
+ "succnsim" => [0x022E9],
1894
+ "succsim" => [0x0227F],
1895
+ "sum" => [0x02211],
1896
+ "sung" => [0x0266A],
1897
+ "sup" => [0x02283],
1898
+ "sup1" => [0x000B9],
1899
+ "sup2" => [0x000B2],
1900
+ "sup3" => [0x000B3],
1901
+ "supE" => [0x02AC6],
1902
+ "supdot" => [0x02ABE],
1903
+ "supdsub" => [0x02AD8],
1904
+ "supe" => [0x02287],
1905
+ "supedot" => [0x02AC4],
1906
+ "suphsol" => [0x027C9],
1907
+ "suphsub" => [0x02AD7],
1908
+ "suplarr" => [0x0297B],
1909
+ "supmult" => [0x02AC2],
1910
+ "supnE" => [0x02ACC],
1911
+ "supne" => [0x0228B],
1912
+ "supplus" => [0x02AC0],
1913
+ "supset" => [0x02283],
1914
+ "supseteq" => [0x02287],
1915
+ "supseteqq" => [0x02AC6],
1916
+ "supsetneq" => [0x0228B],
1917
+ "supsetneqq" => [0x02ACC],
1918
+ "supsim" => [0x02AC8],
1919
+ "supsub" => [0x02AD4],
1920
+ "supsup" => [0x02AD6],
1921
+ "swArr" => [0x021D9],
1922
+ "swarhk" => [0x02926],
1923
+ "swarr" => [0x02199],
1924
+ "swarrow" => [0x02199],
1925
+ "swnwar" => [0x0292A],
1926
+ "szlig" => [0x000DF],
1927
+ "target" => [0x02316],
1928
+ "tau" => [0x003C4],
1929
+ "tbrk" => [0x023B4],
1930
+ "tcaron" => [0x00165],
1931
+ "tcedil" => [0x00163],
1932
+ "tcy" => [0x00442],
1933
+ "tdot" => [0x020DB],
1934
+ "telrec" => [0x02315],
1935
+ "tfr" => [0x1D531],
1936
+ "there4" => [0x02234],
1937
+ "therefore" => [0x02234],
1938
+ "theta" => [0x003B8],
1939
+ "thetasym" => [0x003D1],
1940
+ "thetav" => [0x003D1],
1941
+ "thickapprox" => [0x02248],
1942
+ "thicksim" => [0x0223C],
1943
+ "thinsp" => [0x02009],
1944
+ "thkap" => [0x02248],
1945
+ "thksim" => [0x0223C],
1946
+ "thorn" => [0x000FE],
1947
+ "tilde" => [0x002DC],
1948
+ "times" => [0x000D7],
1949
+ "timesb" => [0x022A0],
1950
+ "timesbar" => [0x02A31],
1951
+ "timesd" => [0x02A30],
1952
+ "tint" => [0x0222D],
1953
+ "toea" => [0x02928],
1954
+ "top" => [0x022A4],
1955
+ "topbot" => [0x02336],
1956
+ "topcir" => [0x02AF1],
1957
+ "topf" => [0x1D565],
1958
+ "topfork" => [0x02ADA],
1959
+ "tosa" => [0x02929],
1960
+ "tprime" => [0x02034],
1961
+ "trade" => [0x02122],
1962
+ "triangle" => [0x025B5],
1963
+ "triangledown" => [0x025BF],
1964
+ "triangleleft" => [0x025C3],
1965
+ "trianglelefteq" => [0x022B4],
1966
+ "triangleq" => [0x0225C],
1967
+ "triangleright" => [0x025B9],
1968
+ "trianglerighteq" => [0x022B5],
1969
+ "tridot" => [0x025EC],
1970
+ "trie" => [0x0225C],
1971
+ "triminus" => [0x02A3A],
1972
+ "triplus" => [0x02A39],
1973
+ "trisb" => [0x029CD],
1974
+ "tritime" => [0x02A3B],
1975
+ "trpezium" => [0x023E2],
1976
+ "tscr" => [0x1D4C9],
1977
+ "tscy" => [0x00446],
1978
+ "tshcy" => [0x0045B],
1979
+ "tstrok" => [0x00167],
1980
+ "twixt" => [0x0226C],
1981
+ "twoheadleftarrow" => [0x0219E],
1982
+ "twoheadrightarrow" => [0x021A0],
1983
+ "uArr" => [0x021D1],
1984
+ "uHar" => [0x02963],
1985
+ "uacute" => [0x000FA],
1986
+ "uarr" => [0x02191],
1987
+ "ubrcy" => [0x0045E],
1988
+ "ubreve" => [0x0016D],
1989
+ "ucirc" => [0x000FB],
1990
+ "ucy" => [0x00443],
1991
+ "udarr" => [0x021C5],
1992
+ "udblac" => [0x00171],
1993
+ "udhar" => [0x0296E],
1994
+ "ufisht" => [0x0297E],
1995
+ "ufr" => [0x1D532],
1996
+ "ugrave" => [0x000F9],
1997
+ "uharl" => [0x021BF],
1998
+ "uharr" => [0x021BE],
1999
+ "uhblk" => [0x02580],
2000
+ "ulcorn" => [0x0231C],
2001
+ "ulcorner" => [0x0231C],
2002
+ "ulcrop" => [0x0230F],
2003
+ "ultri" => [0x025F8],
2004
+ "umacr" => [0x0016B],
2005
+ "uml" => [0x000A8],
2006
+ "uogon" => [0x00173],
2007
+ "uopf" => [0x1D566],
2008
+ "uparrow" => [0x02191],
2009
+ "updownarrow" => [0x02195],
2010
+ "upharpoonleft" => [0x021BF],
2011
+ "upharpoonright" => [0x021BE],
2012
+ "uplus" => [0x0228E],
2013
+ "upsi" => [0x003C5],
2014
+ "upsih" => [0x003D2],
2015
+ "upsilon" => [0x003C5],
2016
+ "upuparrows" => [0x021C8],
2017
+ "urcorn" => [0x0231D],
2018
+ "urcorner" => [0x0231D],
2019
+ "urcrop" => [0x0230E],
2020
+ "uring" => [0x0016F],
2021
+ "urtri" => [0x025F9],
2022
+ "uscr" => [0x1D4CA],
2023
+ "utdot" => [0x022F0],
2024
+ "utilde" => [0x00169],
2025
+ "utri" => [0x025B5],
2026
+ "utrif" => [0x025B4],
2027
+ "uuarr" => [0x021C8],
2028
+ "uuml" => [0x000FC],
2029
+ "uwangle" => [0x029A7],
2030
+ "vArr" => [0x021D5],
2031
+ "vBar" => [0x02AE8],
2032
+ "vBarv" => [0x02AE9],
2033
+ "vDash" => [0x022A8],
2034
+ "vangrt" => [0x0299C],
2035
+ "varepsilon" => [0x003F5],
2036
+ "varkappa" => [0x003F0],
2037
+ "varnothing" => [0x02205],
2038
+ "varphi" => [0x003D5],
2039
+ "varpi" => [0x003D6],
2040
+ "varpropto" => [0x0221D],
2041
+ "varr" => [0x02195],
2042
+ "varrho" => [0x003F1],
2043
+ "varsigma" => [0x003C2],
2044
+ "varsubsetneq" => [0x0228A, 0x0FE00],
2045
+ "varsubsetneqq" => [0x02ACB, 0x0FE00],
2046
+ "varsupsetneq" => [0x0228B, 0x0FE00],
2047
+ "varsupsetneqq" => [0x02ACC, 0x0FE00],
2048
+ "vartheta" => [0x003D1],
2049
+ "vartriangleleft" => [0x022B2],
2050
+ "vartriangleright" => [0x022B3],
2051
+ "vcy" => [0x00432],
2052
+ "vdash" => [0x022A2],
2053
+ "vee" => [0x02228],
2054
+ "veebar" => [0x022BB],
2055
+ "veeeq" => [0x0225A],
2056
+ "vellip" => [0x022EE],
2057
+ "verbar" => [0x0007C],
2058
+ "vert" => [0x0007C],
2059
+ "vfr" => [0x1D533],
2060
+ "vltri" => [0x022B2],
2061
+ "vnsub" => [0x02282, 0x020D2],
2062
+ "vnsup" => [0x02283, 0x020D2],
2063
+ "vopf" => [0x1D567],
2064
+ "vprop" => [0x0221D],
2065
+ "vrtri" => [0x022B3],
2066
+ "vscr" => [0x1D4CB],
2067
+ "vsubnE" => [0x02ACB, 0x0FE00],
2068
+ "vsubne" => [0x0228A, 0x0FE00],
2069
+ "vsupnE" => [0x02ACC, 0x0FE00],
2070
+ "vsupne" => [0x0228B, 0x0FE00],
2071
+ "vzigzag" => [0x0299A],
2072
+ "wcirc" => [0x00175],
2073
+ "wedbar" => [0x02A5F],
2074
+ "wedge" => [0x02227],
2075
+ "wedgeq" => [0x02259],
2076
+ "weierp" => [0x02118],
2077
+ "wfr" => [0x1D534],
2078
+ "wopf" => [0x1D568],
2079
+ "wp" => [0x02118],
2080
+ "wr" => [0x02240],
2081
+ "wreath" => [0x02240],
2082
+ "wscr" => [0x1D4CC],
2083
+ "xcap" => [0x022C2],
2084
+ "xcirc" => [0x025EF],
2085
+ "xcup" => [0x022C3],
2086
+ "xdtri" => [0x025BD],
2087
+ "xfr" => [0x1D535],
2088
+ "xhArr" => [0x027FA],
2089
+ "xharr" => [0x027F7],
2090
+ "xi" => [0x003BE],
2091
+ "xlArr" => [0x027F8],
2092
+ "xlarr" => [0x027F5],
2093
+ "xmap" => [0x027FC],
2094
+ "xnis" => [0x022FB],
2095
+ "xodot" => [0x02A00],
2096
+ "xopf" => [0x1D569],
2097
+ "xoplus" => [0x02A01],
2098
+ "xotime" => [0x02A02],
2099
+ "xrArr" => [0x027F9],
2100
+ "xrarr" => [0x027F6],
2101
+ "xscr" => [0x1D4CD],
2102
+ "xsqcup" => [0x02A06],
2103
+ "xuplus" => [0x02A04],
2104
+ "xutri" => [0x025B3],
2105
+ "xvee" => [0x022C1],
2106
+ "xwedge" => [0x022C0],
2107
+ "yacute" => [0x000FD],
2108
+ "yacy" => [0x0044F],
2109
+ "ycirc" => [0x00177],
2110
+ "ycy" => [0x0044B],
2111
+ "yen" => [0x000A5],
2112
+ "yfr" => [0x1D536],
2113
+ "yicy" => [0x00457],
2114
+ "yopf" => [0x1D56A],
2115
+ "yscr" => [0x1D4CE],
2116
+ "yucy" => [0x0044E],
2117
+ "yuml" => [0x000FF],
2118
+ "zacute" => [0x0017A],
2119
+ "zcaron" => [0x0017E],
2120
+ "zcy" => [0x00437],
2121
+ "zdot" => [0x0017C],
2122
+ "zeetrf" => [0x02128],
2123
+ "zeta" => [0x003B6],
2124
+ "zfr" => [0x1D537],
2125
+ "zhcy" => [0x00436],
2126
+ "zigrarr" => [0x021DD],
2127
+ "zopf" => [0x1D56B],
2128
+ "zscr" => [0x1D4CF],
2129
+ "zwj" => [0x0200D],
2130
+ "zwnj" => [0x0200C],
2131
+ }
2132
+